Nested IF formula not working

Steph_pmg

New Member
Joined
Jun 29, 2018
Messages
10
:ROFLMAO::ROFLMAO:

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?
 

Excel Facts

Will the fill handle fill 1, 2, 3?
Yes! Type 1 in a cell. Hold down Ctrl while you drag the fill handle.
try

=IF(SEARCH("DES:ACH",T33),"Patient Payment","Next if")

What is in T33?
 
Upvote 0
Tried that and it didnt work. Column T is the text or "description" Im referencing from. Example: column T could contain: Deposit ACH LOC215, so then I want my reference column to find the "ACH" and title it CASH...
 
Upvote 0
You can add to this

=IF(ISNUMBER(SEARCH("*DES:ACH*",T33)),"PatientPayment",IF(ISNUMBER(SEARCH("*CIGNA*",T33)),"PatientPayment","OtherAR"))

*Just saw your last reply, not sure what you are after with returning cash from ACH.
 
Last edited:
Upvote 0
Try putting the text you mentioned in T33 "column T could contain: Deposit ACH LOC215, so then I want my reference column to find the "ACH" and title it CASH"

Try the Search formula

=IF(SEARCH("ACH",T33),"Cash","Next if")

And review with Formula Evaluate
 
Upvote 0

Forum statistics

Threads
1,215,063
Messages
6,122,930
Members
449,094
Latest member
teemeren

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top