two =if(xyaz,lki) conditions help

  • Thread starter Thread starter BetaDocuments
  • Start date Start date
B

BetaDocuments

=IF(O14>1000000000,"DUAL VP",IF(O14>500000000,"VP", IF
(O14>100000000,"AVP", "OFFICER")))

I what above condition to be true only when Cell A1 is selected "OUT"
and I want OFFICER to appear when "IN" is selected regardless of
amount.

There will be another if but I have no idea how to set it up.

Help will be appreaciated.
 
Try
=IF(A1="OUT",IF(O14>1000000000,"DUAL VP",IF(O14>500000000,"VP",
IF(O14>100000000,"AVP", "OFFICER"))),IF(A1="IN","OFFICER","NONE"))

It will show NONE if A1 is neither equal to IN or OUT.
 
Try
=IF(A1="OUT",IF(O14>1000000000,"DUAL VP",IF(O14>500000000,"VP",
IF(O14>100000000,"AVP", "OFFICER"))),IF(A1="IN","OFFICER","NONE"))

It will show NONE if A1 is neither equal to IN or OUT.








- Show quoted text -


Excellent!! This is exactly what I am looking for. I will surely
impress my boss here @ JPMorgan. Thanks a bunch.
 
Back
Top