IF Statement Assistance

TheCobbler

New Member
Joined
Aug 21, 2021
Messages
49
Office Version
  1. 365
Platform
  1. Windows
Hi, I have been working on this statement. Each of these line works individually. When I add them together the first three work, and only in this order. When the fourth is added I don't get the desired result. Is there anything obviously wrong? Is there a better way to achieve the same effect? Thanks as always, Cobb

Excel Formula:
=
IF(OR(AND(ISNUMBER(SEARCH("UNI",K2,1)),F2="DVDs FP10/09",ISNUMBER(XMATCH(M2,Universal!$F:$F,0))),AND(ISNUMBER(SEARCH("UNI",K2,1)),F2="BLU-RAY")),G2*0.8,
IF(AND(ISNUMBER(SEARCH("UNI",K2,1)),F2="CDs FP10/09",ISNUMBER(XMATCH(M2,Universal!$F:$F,0))),VLOOKUP(G2,Universal!$C$3:$D$19,2,FALSE),
IF(AND(ISNUMBER(SEARCH("UNI",K2,1)),F2="NEW09 Vinyl",VLOOKUP(G2,Universal!$E$2:$E$11,1,FALSE)),G2,
IF(ISNUMBER(SEARCH("UNI",K2,1)),G2*0.85,
"MANUAL"
))))
 

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.
Why have you got this part VLOOKUP(G2,Universal!$E$2:$E$11,1,FALSE)) inside the AND, what is it meant to return?
 
Upvote 0
It was meant to check that a value existed in Range E2:E11. I guess a similar thing would be this:

Excel Formula:
=
IF(OR(AND(ISNUMBER(SEARCH("UNI",K2,1)),F2="DVDs FP10/09",ISNUMBER(XMATCH(M2,Universal!$F:$F,0))),AND(ISNUMBER(SEARCH("UNI",K2,1)),F2="BLU-RAY")),G2*0.8,
IF(AND(ISNUMBER(SEARCH("UNI",K2,1)),F2="CDs FP10/09",ISNUMBER(XMATCH(M2,Universal!$F:$F,0))),VLOOKUP(G2,Universal!$C$3:$D$19,2,FALSE),
IF(AND(ISNUMBER(SEARCH("UNI",K2,1)),F2="NEW09 Vinyl",ISNUMBER(XMATCH(G2,Universal!$E:$E,0))),G2,
IF(ISNUMBER(SEARCH("UNI",K2,1)),G2*0.85,
"MANUAL"
))))
 
Upvote 0
It's close. I'm getting an #N/A Error for this line (I think):
IF(AND(ISNUMBER(SEARCH("UNI",K2,1)),F2="CDs FP10/09",ISNUMBER(MATCH(M2,Universal!$F:$F,0))),VLOOKUP(G2,Universal!$C$3:$D$19,2,FALSE),

I would expect if there is no match for M2 then it would return G2*0.85 as it should match the fourth line.
 
Upvote 0
If you are getting #N/A the the value in G2 was not found in Universal!$C$3:$C$19
 
Upvote 0
Solution
Ah! I see. That means it stops at that line rather than looking up that cell in another line. I've decided to handle the error... Thank you so much!

= IF(OR(AND(ISNUMBER(SEARCH("UNI",K2,1)),F2="DVDs FP10/09",ISNUMBER(MATCH(M2,Universal!$F:$F,0))),AND(ISNUMBER(SEARCH("UNI",K2,1)),F2="BLU-RAY")),G2*0.8, IF(AND(ISNUMBER(SEARCH("UNI",K2,1)),F2="CDs FP10/09",ISNUMBER(MATCH(M2,Universal!$F:$F,0))),IFNA(VLOOKUP(G2,Universal!$C$3:$D$19,2,FALSE),G2*0.85), IF(AND(ISNUMBER(SEARCH("UNI",K2,1)),F2="NEW09 Vinyl",ISNUMBER(MATCH(G2,Universal!$E:$E,0))),G2, IF(ISNUMBER(SEARCH("UNI",K2,1)),G2*0.85, "MANUAL" ))))
 
Upvote 0

Forum statistics

Threads
1,215,432
Messages
6,124,858
Members
449,194
Latest member
HellScout

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