Making a Cell Go Blank

W

Workbook

I want to modify this formula =IF(Sheet1!N2>=241,1,""), so that if N2 is
blank the cell containing this formula will become blank. I have tried
variations of =IF(N2<>""(Sheet1!N2<>=241,1,""), based on earlier suggestions
but to no avail. Do you have any thoughts?
 
D

DILipandey

Hi,
Try following:-
=IF(OR(N2<>"",N2>=241),1,"").
thanks
--
Dilip Kumar Pandey
MBA, BCA, B.Com(Hons.)
(e-mail address removed)
(e-mail address removed)
New Delhi, India
 
X

xlmate

try this variation

=IF(B4="","",IF(B4>241,1,"value is < 241"))

you may change the last parameter in the 2nd IF statement to any comment you
want

HTH
--
Pls provide your feedback by clicking the Yes button below if this post is
helpful. This will help others to search the archives for result better.


Thank You

cheers, francis
 
W

Workbook

o cool thank you for your input; looks great!

xlmate said:
try this variation

=IF(B4="","",IF(B4>241,1,"value is < 241"))

you may change the last parameter in the 2nd IF statement to any comment you
want

HTH
--
Pls provide your feedback by clicking the Yes button below if this post is
helpful. This will help others to search the archives for result better.


Thank You

cheers, francis
 

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