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
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)