Can system time & date be nested in conditional formula?

M

Masif

I need to nest the computer's system date & time in a cell with condition if
the figure in a referance cell is less than some amount i.e. 1,000 then the
destination cell should show current date & time otherwise it doesn't need.
 
B

Bernard Liengme

=IF(A1<1000,NOW(),"")
will display the date/time if A1 is less than 1000
However you may see a number like 39869.624 since we need to format the cell
Do this in one of two ways
1) select cell, open Format dialog using CTRL+1 and enter custom format such
a mm/dd/yyyy hh:mm
or
2) in a blank cell type =NOW() and use the Format Painter (icon like paint
brush) to 'paint' its format to your cell. Now delete the cell with =NOW()

best wishes
 

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

Top