I have two field in a query that I would like to calculate
Field Name : “Time” and “Hours”
I would like to calculate the field Time*14 if the hoursfield is empty if no time in the time field the default would be “0”
I tried this but it still calculated if there was hours inhours field.
BY HOURS WORKED: IIf([Hours]="IS Null",Nz([Time]*14),0)
Thanks Angie