Sanndeep chalke

New Member
Joined
Jun 1, 2018
Messages
1
Hi,

Please solve this query i want to only apply vlookup of when starting number of 80 and remaining number show as NA.


Example

8097914598 1233
9800001223 NA
8096542545 6398
9812121123 NA
8063545445 1213
 

Excel Facts

Format cells as currency
Select range and press Ctrl+Shift+4 to format cells as currency. (Shift 4 is the $ sign).
Would something like this work?

=IF(AND(LEFT(A1, 2)=80, RIGHT(A1, 2)="NA"), VLOOKUP(,,,), "")
 
Upvote 0
Would something like this work?

=IF(AND(LEFT(A1, 2)=80, RIGHT(A1, 2)="NA"), VLOOKUP(,,,), "")

My bad, try this 1:

=IFERROR(VLOOKUP(IF(AND(LEFT(A1, 2)="80", RIGHT(A1, 2)="NA"), A1, ""), *ARRAY HERE*, FALSE), "")
 
Upvote 0
Something like:

Code:
=IF(LEFT(A2,2)="80",VLOOKUP(A2,[COLOR=#0000FF][I]Range[/I][/COLOR],[COLOR=#FF0000][I]column[/I][/COLOR],False),"NA")
 
Upvote 0

Forum statistics

Threads
1,215,310
Messages
6,124,188
Members
449,147
Latest member
sweetkt327

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