Hello,

I'm having trouble getting this formula to read what I need it to read. Essentially, this is a decisioning tool. Its used to be in the format that if this is not a prohibited type of business, and all of the documentation has been supplied, then I want to approve it. Or in this sense, I want it to read "Continue To Calculator". I have all of the rules built into the formula that would stop the document from being approved. But if all values are the way they are supposed to be, I just get the result of "False". Is there an easy fix to this please help. I have spent the last 6 hours trying to make this work right, and its just not doing it. The formula is:

=IF(H11=FALSE,"Pending",IF(H13=FALSE,"Pending",IF(H15=FALSE,"Pending",IF(H17=FALSE,"Pending",IF(O13=FALSE,"Pending",IF(O15=FALSE,"Pending",IF(O17=FALSE,"Pending",IF(AND(OR(T3="LLC",T3="Government",T3="Corporation",T3="Nonprofit/Tax Exempt",T3="Association/Estate/Trust"),V11=FALSE),"Pending",IF(V13=FALSE,"Pending",IF(V15=FALSE,"Pending",IF(V17=FALSE,"Pending",IF(H19=FALSE,"Pending",IFERROR(IF(AND(VLOOKUP(L5,'Alpha List'!C302:C308,1,FALSE)=L5,W7="Yes"),"Prohibited Merchant","Continue To Calculator"),IFERROR(IF(VLOOKUP(L5,'Alpha List'!C8:C252,1,FALSE)=L5,"Prohibited Merchant",),IF(AND(OR(T3="Sole Proprietor",T3="Partnership"),V11=FALSE),"Continue To Calculator")))))))))))))))

I just want that if all of these statements are true, I want it to say Continue To calculator instead of false.

Thanks!