G Guest Oct 25, 2007 #1 Anyone know how to modify this formula so it does not round anymore? =IF(D22=TRUE, CEILING(MOD(NOW(),1),TIME(,5,)),"")
Anyone know how to modify this formula so it does not round anymore? =IF(D22=TRUE, CEILING(MOD(NOW(),1),TIME(,5,)),"")
P Pete_UK Oct 25, 2007 #3 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,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
G Guest Oct 25, 2007 #4 Never mind....i figured it out... =IF(D22=TRUE, MOD(NOW(),1),"") Thanks anyway...
P Pete_UK Oct 25, 2007 #5 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
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