• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

Time in IF statement

hi ninjas,

would like to use time on a IF statement .. I have attached a sample file for reference.
is there any way ffor me to use "now()" so that the time would automatically update?

thanks in advance! :D
 

Attachments

  • Copy of Book2.xlsm
    17.7 KB · Views: 5
Not exactly sure what you are wanting to do... but you can do it like this.
Replace col B with following.
=IF(CEILING(A1,1/48)=CEILING(MOD(NOW(),1),1/48),1,0)
Or alternately.
=--(CEILING(A1,1/48)=CEILING(MOD(NOW(),1),1/48))

Note that you need to use MOD(,1) to extract time portion only (which is expressed by values after decimal point in Excel).
See attached.
 

Attachments

  • Copy of Book2.xlsm
    18.4 KB · Views: 5
Not exactly sure what you are wanting to do... but you can do it like this.
Replace col B with following.
=IF(CEILING(A1,1/48)=CEILING(MOD(NOW(),1),1/48),1,0)
Or alternately.
=--(CEILING(A1,1/48)=CEILING(MOD(NOW(),1),1/48))

Note that you need to use MOD(,1) to extract time portion only (which is expressed by values after decimal point in Excel).
See attached.


That's it! Thanks Chihiro! :D
 
Back
Top