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

writing in a blank cell

hi all,
I want a set of blank cells to give this message "no data entered".

Using conditional formatting , i can colour the blank cells but i am not able to put "no data entered".

Is there any way by which i can achieve this.

thanks and rgds
 
You could do this,

=IF(LEN(A2)>0,A2,"No data entered")

or this
=IF(A2<>"",A2,"No data entered")

or maybe this is the one you want !
=IF(ISBLANK(A2),"No data entered",A2)


Just put your cell reference in, I start at A2 because EVERYBODY uses the first row for understandable column titles and EVERYBODY names their sheet tabs....NOT.

If you turn your data into a table the formula will auto fill down without CF, if you still want CF just CF for text cells. Look at the file upload.

.
 

Attachments

  • Sample of blank cells.xlsx
    17.7 KB · Views: 3
Back
Top