View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Luke M Luke M is offline
external usenet poster
 
Posts: 2,722
Default If Function with multiple criteria

check out the Boolean functions AND & OR

=IF(AND(ISBLANK(Cell1),Cell2<TODAY()),"Overdue","C riteria not met")
--
Best Regards,

Luke M
*Remember to click "yes" if this post helped you!*


"GPearson" wrote:

Hi, I have am trying to use the If function to deliver a value if 2 criteria
are true for 2 different fields. Both contains dates. The first field is
blank or not. The 2nd field is filled in. The criteria I am trying to find
is if the 1st field is blank and the 2nd field is earlier than today, the
function should deliver the value "Overdue" to the third field. How can I
use the If function to do this?