I have a field, Duration which contains a time value. However, the time can come in either as a number of hours or as a number of minutes.
On my report I use an unbound textbox to display the time as hours derived by using Format(IIF([Duration] < 8, [Duration],[Duration]/60),"Fixed" which works fine. However, if I try to calculate the total of that column I get #Error displayed in my total textbox (which is located in the report footer).
Can anyone point me in the right direction?
Thanks, Bear
On my report I use an unbound textbox to display the time as hours derived by using Format(IIF([Duration] < 8, [Duration],[Duration]/60),"Fixed" which works fine. However, if I try to calculate the total of that column I get #Error displayed in my total textbox (which is located in the report footer).
Can anyone point me in the right direction?
Thanks, Bear