Rounding time to the next minute

  • Thread starter Thread starter Paul D
  • Start date Start date
P

Paul D

Rounding time to the next minute
I have a time 00:02:12 I need to have as a numberic value
and rounded up to the netx minute, I need to get a value
of 3
 
Hi
try
=ROUNDUP(A1*24*60,0)/(24*60)
and format the resulting cell as time
 
I tried

=ROUNDUP(G2*24*60,1) / (24*60),

The Value of G2 is 0:02:11 and I get a value of 0:02:12, I
need to get a numberic value of 3.

Under the same breath I also need to track hours in
minutes... Any ideas

Framk - you are great, I have been trying to accomplish
many things for quite a while, and you have always lead me
down the right path... THANK YOU
 
Hi,

Change
=ROUNDUP(G2*24*60,1) / (24*60)
to
=ROUNDUP(G2*24*60,0) / (24*60)

with a zero.

works for me.
 
Hi
as i posted use
=ROUNDUP(G2*24*60,0) / (24*60)
so change the ,1 to ,0 in the ROUNDUP function
 

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

Back
Top