Additional IF Function

P

Pran

Hi there,

I have formula array as below
=IF(S50="R";IF(ISNUMBER(W50);IF(ISNUMBER(X50);IF(ISNUMBER(Y50);IF(ISNUMBER(Z50);"Paid";"On Paid");"Waiting Fund");"in process");"sending");"Cashless")

Now, If I type "I" in S50, the result should be "Irreclaimable"
Kindly please help me to modify the formula,

THank you,
Pran
 
M

Ms-Exl-Learner

Try this…

=IF(S50="R","Waiting Fund",IF(S50="I","IRRECLAIMABLE",IF(ISNUMBER(W50),"In
Process",IF(ISNUMBER(X50),"Sending",IF(ISNUMBER(Y50),"Cashless",IF(ISNUMBER(Z50),"Paid","On Paid"))))))

If this post helps, Click Yes!
 
M

muddan madhu

=IF(S50="R",INDEX({"Sending";"in process";"Waiting fund";"On
paid";"paid"},IF(ISNUMBER(W50:Z50),COUNT(W50:Z50)+1)),IF
(S50="I","Irreclaimable",""))
 
P

Pran

It doesnt work,

no matter what I fill or not in cell between W till Z, result is "sending"
(with S50=R)
if S50=I, result is "blank"
 
P

Pran

It doesnt work bro,

no matter what I fill or not in cell between W till Z, result is "waiting
fund"
(with S50=R)
if S50=I, result is "Irreclaimable" which i want to be.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top