Jul 14, 2003 #1 TonyU Technical User Feb 14, 2001 1,317 US Hello all, can someone please help me in modifying this formula =IF(E10<D10,"U","F" 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...
Hello all, can someone please help me in modifying this formula =IF(E10<D10,"U","F" 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...
Jul 14, 2003 1 #2 xlbo MIS Mar 26, 2002 15,080 GB specifically from what you have requested: =IF(AND(E10="",D10="","",if(E10<D10,"U","F") if you want to check whether EITHER is empty, use: =IF(OR(E10="",D10="","",if(E10<D10,"U","F") 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 Upvote 0 Downvote
specifically from what you have requested: =IF(AND(E10="",D10="","",if(E10<D10,"U","F") if you want to check whether EITHER is empty, use: =IF(OR(E10="",D10="","",if(E10<D10,"U","F") 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
Jul 14, 2003 1 #3 luceze Programmer Apr 26, 2001 842 US Try This =IF(E10+D10=0,"",IF(E10<D10,"U","F") HTH, Eric Upvote 0 Downvote
Jul 14, 2003 1 #4 Wray69 Technical User Oct 1, 2002 299 US try this =IF(AND(ISBLANK(E10),ISBLANK(F10))," ",IF(E10<F10,"U","F") Wray Upvote 0 Downvote
try this =IF(AND(ISBLANK(E10),ISBLANK(F10))," ",IF(E10<F10,"U","F") Wray
Jul 14, 2003 Thread starter #5 TonyU Technical User Feb 14, 2001 1,317 US Thank you both very much... Upvote 0 Downvote
Jul 14, 2003 Thread starter #6 TonyU Technical User Feb 14, 2001 1,317 US Thank you also Wray69 Upvote 0 Downvote