HI there.
I've been trying to rack my brains about this query, but I just can't get it to work.
To give a description I have a database that users input to. From there I need two boxes to auto-generate some information. The information I need it to pull is from multiple fields within a table. Those fields are: Assign time, unload time, total, and expected time.
Basically this describes if we're over or under on a specific job. If it's under, it'll auto-populate same with if it's over.
Please see below on my code, and please feel free to change what's in there. This is for the "under time" auto generated field. I cannot get it to work..
Over Time: IIf([loadtime].[AssignTime]>[unloadTime]
([loadtime].[EstimatedTime] +23,<,[TotalTime] - [EstimatedTime]-23) IIf([loadtime]. [TotalTime] > [EstimatedTime], [TotalTime]-[EstimatedTime],)
I've been trying to rack my brains about this query, but I just can't get it to work.
To give a description I have a database that users input to. From there I need two boxes to auto-generate some information. The information I need it to pull is from multiple fields within a table. Those fields are: Assign time, unload time, total, and expected time.
Basically this describes if we're over or under on a specific job. If it's under, it'll auto-populate same with if it's over.
Please see below on my code, and please feel free to change what's in there. This is for the "under time" auto generated field. I cannot get it to work..
Over Time: IIf([loadtime].[AssignTime]>[unloadTime]
([loadtime].[EstimatedTime] +23,<,[TotalTime] - [EstimatedTime]-23) IIf([loadtime]. [TotalTime] > [EstimatedTime], [TotalTime]-[EstimatedTime],)