View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.misc
JE McGimpsey
 
Posts: n/a
Default Is there an equation in Excel to use multiple if then statements?

what do you mean by "multiple if then statements"?

You can nest them:

=IF(condition1, true1, IF(condition2, true2, false2))


you can have multiple if's sequentially:

=IF(condition1, true1, false1) & IF(condition2, true2, false2)




In article ,
"Cody5" wrote: