IF with ISNA and VLOOKUP

wildes

New Member
Joined
Oct 23, 2014
Messages
7
Hi, i have 2 columns on a summary sheet using the 2 formula's below is there any way to combine these into 1 formula but still see the same results?, there are looking at the same unique reference on the summary sheet but referencing different cells on the signing's sheet.

=IF(ISNA(VLOOKUP(C13,'Signing's'!C:H,6,FALSE)),"No","Licence")
=IF(ISNA(VLOOKUP(C13,'Singing's'!AE:AF,2,FALSE)),"No","Revenue")

Any help appreciated
 

Excel Facts

Control Word Wrap
Press Alt+Enter to move to a new row in a cell. Lets you control where the words wrap.
It's not very clear what you want, but maybe
Excel Formula:
=IF(ISNA(VLOOKUP(C13,'Signing's'!C:H,6,FALSE)),"No","Licence")&" "&IF(ISNA(VLOOKUP(C13,'Singing's'!AE:AF,2,FALSE)),"No","Revenue")
 
Upvote 0
Thanks for the quick reply, apologies i didn't explain myself well.

Your formula nearly did it, you can see in Test1 & Test4, the only issue is it says License or Revenue with a no afterwards, Test2 & 5 are my non combined ones, which is how it would like it to look if possible.

1599579056153.png
 
Upvote 0
Will the lookup value only be in one of the ranges?
 
Upvote 0
No, the lookup value is in 2 columns, the first range is in column c, the second in column AE.
 
Upvote 0
So you want it to return one of
Licence
Revenue
Licence Revenue
Is that right?
 
Upvote 0
If say, Test1 from column C is found on the signing's sheet it needs to say License, if Test4 from column AE it needs to say revenue, if nothing is found it can be blank or say no.
 
Upvote 0
What if Test1 is found in both col C & AE?
 
Upvote 0
Ok, how about
Excel Formula:
=IF(ISNA(VLOOKUP(C13,'Signing''s'!C:H,6,FALSE)),IF(ISNA(VLOOKUP(C13,'Signing''s'!AE:AF,2,FALSE)),"No","Revenue"),"Licence")
 
Upvote 0

Forum statistics

Threads
1,214,920
Messages
6,122,264
Members
449,075
Latest member
staticfluids

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