Formula Help

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Anyone know how to modify this formula so it does not round anymore?

=IF(D22=TRUE, CEILING(MOD(NOW(),1),TIME(,5,)),"")
 
Try this:

=IF(D22=TRUE,NOW(),"")

However, NOW will return the system time and will continue to change,
so I'm not really sure what the purpose of the formula is.

Hope this helps.

Pete
 
Try this:

=IF(D22=TRUE,MOD(NOW(),1),"")

However, NOW will return the system time and will continue to change,
so I'm not really sure what the purpose of the formula is.

Hope this helps.

Pete
 
Back
Top