Jun 14, 2006 #1 r0nniem Technical User Dec 22, 2005 28 AU Hi I've got these fields: Call Placement Time: 15/06/06 09:15:05 Time To Fix: 1.5 (Number format meaning 1hr 30 mins) I want to add Time to Fix to Call Placement Time so I can do a countdown of time left to fix. Can you pleae help? Thanks R0nnie
Hi I've got these fields: Call Placement Time: 15/06/06 09:15:05 Time To Fix: 1.5 (Number format meaning 1hr 30 mins) I want to add Time to Fix to Call Placement Time so I can do a countdown of time left to fix. Can you pleae help? Thanks R0nnie
Jun 14, 2006 #2 PHV MIS Nov 8, 2002 53,708 FR Something like this ? DateAdd("n", 60*[Time To Fix], [Call Placement Time]) Hope This Helps, PH. Want to get great answers to your Tek-Tips questions? Have a look at FAQ219-2884 or FAQ181-2886 Upvote 0 Downvote
Something like this ? DateAdd("n", 60*[Time To Fix], [Call Placement Time]) Hope This Helps, PH. Want to get great answers to your Tek-Tips questions? Have a look at FAQ219-2884 or FAQ181-2886
Jun 15, 2006 #3 S SkipVought Programmer Dec 4, 2001 47,492 US Hi, FYI, TIME values are in units of DAYS. So if you have a value that represents HOURS, you want to convert hours to days. Code: New Time: [Call Placement Time] + [Time To Fix] / 24 Skip, [red]Be Advised![/red] The only distinction between a bird with one wing and a bird with two, is merely... a difference of A Pinion! Upvote 0 Downvote
Hi, FYI, TIME values are in units of DAYS. So if you have a value that represents HOURS, you want to convert hours to days. Code: New Time: [Call Placement Time] + [Time To Fix] / 24 Skip, [red]Be Advised![/red] The only distinction between a bird with one wing and a bird with two, is merely... a difference of A Pinion!