R
rciolkosz
I would like to insert a column in my query to add column three plus column
four ONLY if column four is greater than .5
four ONLY if column four is greater than .5
rciolkosz said:I would like to insert a column in my query to add column three plus
column four ONLY if column four is greater than .5
Specifically I need this.
Column Names.
Hours + Admin + Mtg
I only want to include the Admin value if it is >.5 and zero if it is less
than .5
[quoted text clipped - 5 lines]NewField: Field3 + IIf(Field4 > 0.5, Field4, 0)
I would like to insert a column in my query to add column three plus column
four ONLY if column four is greater than .5
raskew via AccessMonster.com said:[hours] + [Mtg] + iif([[Admin]>5, [Admin], 0)
Specifically I need this.
Column Names.
Hours + Admin + Mtg
I only want to include the Admin value if it is >.5 and zero if it is less
than .5
[quoted text clipped - 5 lines]I would like to insert a column in my query to add column three plus
column four ONLY if column four is greater than .5NewField: Field3 + IIf(Field4 > 0.5, Field4, 0)
Getting there.
If the Admin field is >5 then I want to add that number into the equation.
ex. if the number in the admin field is say 8 then I would add 3 to the
other two columns.
[quoted text clipped - 12 lines][hours] + [Mtg] + iif([[Admin]>5, [Admin], 0)