Convert 1.15 to 1.25 for time purposes.

  • Thread starter Thread starter Jmcb1b
  • Start date Start date
J

Jmcb1b

I've been using decimals for time calculation. My totals output to the
exact minute. I'm needing my time to stay in the "0.00" format. But I'm
needing it to display in quarter hour increments.

example: 1.15 = 1.25
1.30 = 1.50
1.45 = 1.75


1.01 to 1.14 = 1.00
1.15 to 1.29 = 1.25
1.30 to 1.44 = 1.50
1.45 to 1.59 = 1.75

Is this possible?

Thanks in advance.
 
If you number is in A1:

=TRUNC(A1)+IF(MOD(A1,1)<0.15,0,IF(MOD(A1,1)<0.3,0.25,IF(MOD(A1,1)<0.45,0.5,0.75)))
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Formulas 2
enter a set value in adjacent cell 2
Help with query, possible crosstab 8
Conditional Time Calculation 10
trenline fomular help 0
vlookup question 6
I need help to find... 1
Decimal to Time Format. 5

Back
Top