Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

=IF(E10<D10,"U","F") how to modify adding "Blank&quo 3

Status
Not open for further replies.

TonyU

Technical User
Feb 14, 2001
1,317
US
Hello all, can someone please help me in modifying this formula

=IF(E10<D10,&quot;U&quot;,&quot;F&quot;)

to display blank is nothing populates cells E10 and D10
right now, the letter F show's up when both cells are blank.

Thanks in advanced...

stupid.gif
 
specifically from what you have requested:
=IF(AND(E10=&quot;&quot;,D10=&quot;&quot;),&quot;&quot;,if(E10<D10,&quot;U&quot;,&quot;F&quot;))

if you want to check whether EITHER is empty, use:

=IF(OR(E10=&quot;&quot;,D10=&quot;&quot;),&quot;&quot;,if(E10<D10,&quot;U&quot;,&quot;F&quot;))


Rgds, Geoff
Si hoc legere scis, nimis eruditionis habes
Want the best answers to your questions ? - then read me baby one more time - faq222-2244
 
Try This

=IF(E10+D10=0,&quot;&quot;,IF(E10<D10,&quot;U&quot;,&quot;F&quot;))

HTH,
Eric
 
try this

=IF(AND(ISBLANK(E10),ISBLANK(F10)),&quot; &quot;,IF(E10<F10,&quot;U&quot;,&quot;F&quot;))

Wray
 
Thank you both very much...

stupid.gif
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top