using Vlookup to identify > 1 values by ID #

Damian37

Board Regular
Joined
Jun 9, 2014
Messages
245
Office Version
  1. 365
Hello Everyone,
I'm trying to pull in information from one spreadsheet to another by using Vlookup, however, I only want to bring back a true/false value if the record has a value > 1. Essentially I'm tracking certain types of transactions, and I only want to identify instances where the # of transactions is > 1. I'm using a COUNTA formula to identify instances where the rep has performed a transaction. I'm only interested in transactions that are > 1.

Ex.
ID# Formula Value
NNN 1
DDD 2
WWW 0
TTT 3

I then have a summary file in which I only have the ID #. I want to perform a vlookup to bring back only records in which the Formula Value is > 1. I was hoping someone has come across this issue before, and can tell me whether a Vlookup formula is what I should be using, or if I should use a different formula to get the results I need. All help is greatly appreciated. Thanks

Damian
 

Excel Facts

Spell Check in Excel
Press F7 to start spell check in Excel. Be careful, by default, Excel does not check Capitalized Werds (whoops)

AliGW

Banned
Joined
Mar 9, 2014
Messages
3,628
What does your example data represent? Is it the result you are looking for? What does the lookup data look like?
 
Upvote 0

godsaaint

Active Member
Joined
Sep 16, 2016
Messages
285
Try the formula below, "Sheet2" being the name of the sheet you are trying to pull info from, and make sure to change $B$2:$B$5 and $A$2:$A$5 to the real ranges.

=INDEX(Sheet2!$B$2:$B$5,MATCH(A2,Sheet2!$A$2:$A$5,0))>1
 
Last edited:
Upvote 0

Forum statistics

Threads
1,190,783
Messages
5,982,895
Members
439,805
Latest member
IDarkstarX

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
Top