Help with nested If/AND formula based on multiple criteria

violenttuesday

New Member
Joined
May 29, 2014
Messages
1
I'm pulling my hair out trying to figure this one out. I have a fake mock-up spreadsheet but the forum will not allow me to post attachments.

I am trying to do a nested IF/AND formula that will give me the EXACT name in a specific cell on a different worksheet. Example: "If the obligation number is 481000000 and the borrower is Jane Doe, give me the Product Type 'Mars' from Sheet 2 based on that data matching up". I keep getting either a blank cell, or "false". I need it to populate the exact word found in the cell on the other page.

If anyone can figure this one out I would really, really appreciate it!! I feel like I've tried everything :(

Here's what I have:

=IF(AND(A4=OBLIGATION_NUMBER,C4=BORROWER),"",DETAILED_PRODUCT_TYPE)
*(I have named ranges set up)
 

Excel Facts

Select a hidden cell
Somehide hide payroll data in column G? Press F5. Type G1. Enter. Look in formula bar while you arrow down through G.
Try changing your formula to:

=IF(AND(A4=OBLIGATION_NUMBER,C4=BORROWER),DETAILED_PRODUCT_TYPE,"")
The first part of the if statement returns the value if true.
 
Upvote 0

Forum statistics

Threads
1,214,411
Messages
6,119,346
Members
448,888
Latest member
Arle8907

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