automatically insert date in adjacent cell?

M

Mike B.

i obviously know nothing about excel, but here we go. i want to have the current date entered into a cell if the left adjacent cell has a number value in it. this is what i have so far, but it's not working

=IF(ISNUMBER(RC[-1]), TODAY(), ""

any help would be great!
 
D

Dave R.

I think excel wants another cell reference, and RC[-1] wont do this. Just
put a formula like this one to the right of the cell you want to evaluate.


=IF(ISNUMBER(A1), TODAY(),"")



Mike B. said:
i obviously know nothing about excel, but here we go. i want to have the
current date entered into a cell if the left adjacent cell has a number
value in it. this is what i have so far, but it's not working.
=IF(ISNUMBER(RC[-1]), TODAY(), "")

any help would be great!
 

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