Link to home
Start Free TrialLog in
Avatar of Walker85
Walker85

asked on

decimal time convertor

Hi

I want to create a simple form or calculator that will sit in an exsisting spredsheet that will allow user to enter a time that will display the decimal time so they can update a value in the same sheet
Hope that makes sense
Thanks
Avatar of Nurul Furqon Rohmat Syah
Nurul Furqon Rohmat Syah
Flag of Indonesia image

What do you need exactly please send an example file


br

Nurul
Avatar of Walker85
Walker85

ASKER

Think you I will dig  one out as soon as I can
Avatar of David Johnson, CD
by decimal time do you mean 8:15 = 8.25 or do you want the internal time value that is stored in a datetime field?
Yes. So 25 50 75 etc
SOLUTION
Avatar of Robberbaron (robr)
Robberbaron (robr)
Flag of Australia image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Hi sorry about delay in replying I have been away this looks like the answer it will be used to monitor lateness so for example if some was 36 mins late it would convert to decimal
If a person was supposed to be somewhere at 8AM and they arrive at 8:15, what should the answer be?
ASKER CERTIFIED SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
If you want to take into account that someone could be early then use this

=IF(A1>B1,MOD(A1-B1,1)*-24,MOD(B1-A1,1)*24)

which will show the difference with a negative sign.
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
I have not selected my comment