I am simplifying a bank reconciliation by identifying each transaction on the bank and GL into categories.
I tried nesting:
=IF(T33="*DES:ACH*","PatientPayment",IF(T33="*CIGNA*","PatientPayment",IF(T33="*DXC*","Dental",IF(T33="*DENTIST*","Dental",IF(T33="*DES:DEPOSIT*","Other AR","")))))
Didn't work.
Then tried nesting with ISTEXT and Search:
=IF(ISTEXT(SEARCH(T143="*DES:ACH*","PatientPayment",IF(T143="*CIGNA*","PatientPayment",IF(T143="*DXC*","Dental",IF(T143="*DENTIST*","Dental",IF(T143="*DES:DEPOSIT*","Other AR")))))),0)
Neither formula is identifying the texts in column T. Formula is returning False or Nothing.
Any suggestions?