• 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.

Timestamp with a range of cells

AJM

New Member
I enter =IF(C2<>"",IF(B2="",NOW(),B2),"") in column B and when there is an entry in column C a date is entered in column B. I want to have that apply to range of cells, so when there is an entry in column C-H then the timestamp applies.
 
What about

=IF(COUNTA(C2:H2)<>0,IF(B2="",NOW(),B2),"")


If that formula is going in B2 shouldn't it read?

=IF(COUNTA(C2:H2)<>0,IF(B1="",NOW(),B1),"")

so that it is checking the cell above itself
 
Back
Top