How to use multiple if conditions in one cell and set priorities to them

rachurupavan

New member
Joined
May 8, 2014
Messages
1
Reaction score
0
Points
0
Hi Gurus,

I want to have multiple IF statements in a Particular cell, and I want to set priority to the IF statements, so that if one meets other statements should stop working. can u please let me know.


this is the first time am posting in this forum,don't where to upload screen shot for reference.
Please let me know if you need more clarification on my question

Thanks,
Pavan
 
You can have nested IF statements, but not multiples.
 
Let's say A, B, C, D and E are conditions that you want to give priority to in that order; so if both A and D are true, you want priority given to A.
In the formula itself, A might really be something like W22>P13, which returns TRUE or FALSE.

So a formula might look like (air-code/formula):
=IF(A,"1st Priority",IF(B,"2nd Priority",IF(C,"3rd Priority",IF(D,"4th Priority",IF(E,"5th Priority","All false")))))
 
Back
Top