Thread: nested If
View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.misc
David Biddulph[_2_] David Biddulph[_2_] is offline
external usenet poster
 
Posts: 8,651
Default nested If

=IF(I5="",IF(J5="","","result undefined"),IF(J5="","In Progress","Closed"))
--
David Biddulph


"Dave Shultz" wrote in message
...
Here's my dilemma:
If cell I5 is null and J5 is null, I want L5 to be null
If I5 is not null and J5 is null, I want L5 to return "In Progress"
If I5 is not null and J5 is not null, I want L5 to return "Closed"
Any suggestions???