Can Use Wildcard For R1C1 (lookup Value) In VLookup

Aug 21, 2013

know if I can use a wildcard on R1C1 notation for my "lookup value" in my Vlookup, so that the Vlookup searches for a not exact match, but on the whole contents of the cell, not just the first several letters? I am using VBA, and the vlookup is in each cell of a for next loop, so I cannot use an actual cell reference which is where I've usually seen, and used wildcards. I've tried changing the Vlookup to have the lookup value be "Cells(n,2)" instead of "RC[-2]" to no avail. I need to make the vlookup evaluate all the words in cell "RC[-2]" prior to returning the value I specified, because otherwise it returns the wrong value even though I sorted my lookup table Column A A to Z.

Start Date
End Date
Event ID
"Trans-Pacific Melodies" : an East-meets-West concert presented by Carolina International Orchestra and the China National Orchestra
10/06/13
10/06/13
22297

[code]....

View 1 Replies


ADVERTISEMENT

Lookup With Wildcard

Mar 27, 2014

I was wondering is there away where i can lookup A:A anything begging with Ves* ? and then i need to copy the formula down to pick up the next one in the list

im guessing something like =VLOOKUP(A:A,"Ves*") but i havent got a clue

View 1 Replies View Related

Excel Lookup With Wildcard?

Jun 20, 2012

I maintain a control list of all properties held by the company. Each month I have to manually review all property-related transactions (see transaction description column) and input in column "Key 1" the property it relates to by reviewing the data in the transaction description and finding the property in the control list. Is there a way I can automate this process with a forumla?

some key points:
- the name in the control list can appear at any positiion in the transaction description
- various transactions relating to the same property will appear in the transaction description listing many times and key 1 will need to be completed against each entry
- if there is no match between the transaction descripton and the control list then the relevant cell in column "Key 1" should show as "Not Found"

Control List
Transaction Description
Key 1
Bligh

[Code].....

View 5 Replies View Related

If Statement With Vlookup And Wildcard

Jan 7, 2014

I need to lookup data from four different columns to match a value in another sheet. The lookup value has to start with "4" in order for it to be the correct match. I've tried the following formula for just two columns:

=IF(VLOOKUP($C2,'Sheet 1'!$D$2:$H$10000,5,FALSE)="4*",VLOOKUP($C2,'Sheet 1'!$D$2:$H$10000,5,FALSE),IF(VLOOKUP($C2,'Sheet 2'!$E$2:$G$10000,3,FALSE)="4*", VLOOKUP($C2,'Sheet 2'!$E$2:$G$10000,3,FALSE),"False"))

The problem I have is that the wildcard function isn't working in my If statement (apparentley that's how Excel was designed). The first vlookup returns the value "40042565" but Excel doesn't show it matching the criteria with the wildcard ("4*").

Any way to lookup the value in C2, search through multiple columns, and return the value that starts with "4"?

View 3 Replies View Related

VLookup Of Concatenate With Wildcard

Jan 31, 2014

I would like to Vlookup an association of data in a matrix where not all information is available. e.g:

Vlookup of following data (concatenate):

A1&B1&C1&D1
A2&B2&C2&D2
A3&B3&C3&D3

but in the mapping I would have a wild card (*) in certain columns (not always the same column)

The concatenate would be for exemple:

A1&*&C1&D1
A2&B2&*&D2
*&B3&C3&*

I know it works on the other way around (Vlookup of concatenate with wilrdcards) but I can not have wildcards in my source data.

View 7 Replies View Related

Vlookup With Wildcard Search

Oct 28, 2008

picture this.

Cell A1 = xyz3
Cell B1 = 5
Cell C1 = xyz3-hgfe-56f

I need to do a vlookup on C1 in range A1:B1 that will return B1 if C1 contains the string in A1. I've tried using the TRUE variable in the vlookup formula which does not require an exact match. This works for about 80% of my data but is not 100% accurate. Of course I've got a long list of data ... not just the 3 cells.

View 4 Replies View Related

Lookup Formula With Wildcard: Force Excel To See * & ? As Characters

Sep 8, 2006

There might be an easy solution for this, but I can't seem to figure it out. I'm trying to do a vlookup with the lookup value being #CFDMSMCSA*4. But the lookup table also has a value #CFDMSMCSAM4 in it.
It keeps returning the value for this #CFDMSMCSAM4 because of the * in the first string. Any ideas.

View 9 Replies View Related

Get The Name Of The File In A Vlookup VBA Using Wildcard Characters?

May 17, 2014

get the name of the File in a Vlookup VBA using wildcard characters. I have to do a VLOOKUP from a specific file which is stored in the same folder as the file in which I need to get this VLOOKUP done, however the name can change anytime keep a word common only for this specific file...

Ex:
I have a File called "Mapping as on 8th May" from where i need to lookup some information for my file and I intend to do this using VLOOKUP in VBA in a Module but since the name can change to anything such as"Mapping as on 16th May" I cant use it in the VBA code, so is there a way around this where If I have this file stored in the same folder then I keep the word "Mapping" specific and unique for all other files in the same folder that the search can pull this file name to be further used in my lookup..

how to use the wildcards in VLOOKUP lookup range for the file name as the columns are going to remain the same...

View 13 Replies View Related

VLookup In Array Search With Wildcard Characters

Jul 10, 2012

I have a sheet with Names in it. I need to look those names up and find which org they belong to. The problem is the the names have many characters after them, and many names belong to a few orgs, with a the rest belonging to many orgs. (See below)

I have been trying to get a Vlookup to work, but since it can't go left, it won't look up the orgs that don't own at least three names. And I can't get the search to work on the names.

Names:
WSGHG1-8410YFH

WSSMXG-8401B8T

NBSMXG-0310V6R

NBXG-0310V6V

[code]....

View 4 Replies View Related

Add Nested ISNA & VLOOKUP With Wildcard Via Macro Code

Aug 23, 2008

I have the following vlookup working exactly as I want it to in excel: =IF(ISNA(VLOOKUP(LEFT(C2,10)& "*", NAME,2,FALSE)),"",(VLOOKUP(LEFT(C2,10)& "*",NAME,2,FALSE))) -NAME is a defined section on another worksheet

The problem I have is when I come to use this within a vba macro I'm writing the wildcard section automatically gets spaces added so it goes from "*" to " * " and excel doesn't like it! The code I'm using to write it into the cell is simply:

ActiveCell.FormulaR1C1 = _
"=IF(ISNA(VLOOKUP(LEFT(c2,10)& " * ",NAME,2,FALSE)),"",(VLOOKUP(LEFT(c2,10)& " * ",NAME,2,FALSE)))"

how to stop the spaces being added?

View 2 Replies View Related

Fastest Lookup Method: Use A Key To Lookup A Value (VLookup, Index/Match, DGet, And The Rest)

Mar 26, 2008

Excel offers many ways to use a key to lookup a value (VLookup, Index/Match, DGet, and the rest). What's the fastest way to perform a lookup of a small table of, say, 30 rows of key-value pairs? Theoretically, it would be most efficient to use a branch table (also known as a jump table). See the wikipedia article for branch tables: http://en.wikipedia.org/wiki/Branch_table. Does Excel/VBA have a way to create a branch table for such lookups?

View 9 Replies View Related

Lookup Vs Vlookup

May 30, 2009

i am using Vlookup in all My files and the 4Th argument i put it 0 to give exazct result

My Question
Lookup Function give the Exact or approximate match and as i know Vlookup give the first result but Lookup give the last result

View 9 Replies View Related

Two Lookup Values, Vlookup

Apr 5, 2007

I want to match two different values in the same row and then have it return another value in that row.

View 9 Replies View Related

Vlookup: Lookup The Title

Jan 29, 2009

I have a tab with the following on:

Australia
SOME VLOOKUP FORMULA
SOME VLOOKUP FORMULA

I then have another tab which is similiar to this:

Australia Danny 23
Australia David 25
Canada Ben 35

Basically what I want is....where ive put some formula I want to lookup the title, in this case australia which is the cell above, search within the table then enter the name to the right of that. I have done this, however it only ever uses the first name on the list..... Example i always get danny on a role, i have managed then to get it to say david underneath but then if i copy the forumla down again it continues with danny, david etc.

View 4 Replies View Related

Vlookup Using Two Lookup Values

Nov 21, 2005

Is there a way to perform a vlookup with two lookup values?

I'd like to look up the value of A1 and B1 in a table with A1 and B1 values
included to return cell C2 from the table. I've had limited
succcess using concatenate and then using vlookup on that cell but i'd like
to not have to do the concatenate step.

View 10 Replies View Related

VLOOKUP() Style But 3 Value Lookup

Mar 4, 2009

I have a table that has, amongst many columns, a year, month and a name column.

I want to do a formula that takes in 3 values (name, year, month) and returns a sum of values found in a variety of other columnswhere these 3 values are matched.

I would know how to do this in SQL but wonder if Excel can do this type of thing on one large data table?

View 9 Replies View Related

How To Specify More Than 1 Lookup Range With VLOOKUP

Sep 4, 2012

Is there a way that I can do a vlookup in 1 file and specify more than 1 data range to lookup the data in?

In this case I have one file to put the vlookup in and a second file with more than 1 tab and I want to have it search each of those tabs and return the result. The format of these sepatate tabs are to each other and for that matter, identicle to the main file.

View 1 Replies View Related

VLOOKUP With The Lookup Value On A Different Sheet

Apr 7, 2009

Formula is on Sheet1 and table array is on Sheet1
but the lookup value is on Sheet2 in Cell B15

Below does not work, either does anything I have tried.

=VLOOKUP(Sheet2!B15,B138:E161,4,FALSE)

View 9 Replies View Related

Lookup Second Occurrence With Vlookup

Dec 29, 2006

I am using vlookup to find the ORIGIN data and DESTINATION data but the subheading is the same for both- see below(site name, city...). How do I find the second occurrence for the same heading?

Is there another command that would be better?

col A col B
Line#1ORIGIN INFO:
Line#1 CONTACT NM
Line#1 CONTACT PH#
Line#1 CONTACT EML
Line#1 SITE NAME
Line#1 ADDRESS
Line#1 CITY
Line#1 ST ZIP CTY
Line#1 DAY&WINDOW
Line#1 LIVE/DROP?

Line#1DESTIN INFO:
Line#1 CONTACT NM
Line#1 CONTACT PH#
Line#1 CONTACT EML
Line#1 SITE NAME
Line#1 ADDRESS
Line#1 CITY
Line#1 ST ZIP CTY

View 5 Replies View Related

Vlookup With Two Lookup Values

Apr 11, 2007

=VLOOKUP(C29,'Zero Days YTD'!B:Q,16,FALSE) is my current formula where C29 = Jack Bates.
As of this month Jack Bates is now in two places on worksheet Zero Days YTD. One is named "Jack Bates (from AMU 3/1/07)" and the other named "Jack Bates (to APU 3/1/07)"

I tried =VLOOKUP("Jack Bates (from AMU 3/1/07)"&"Jack Bates (to APU 3/1/07)",'Zero Days YTD'!B:Q,16,FALSE), but that didn't work.

View 3 Replies View Related

Use R1c1 In Formula

Mar 24, 2007

=IF(CEILING(B9/0.5,1)>40,MAX(CEILING(B9/0.55,1),40),MAX(CEILING(B9/0.5,1),36))-0.01

Edit B9 to the R1C1 style of cell reference, how to do that?

View 3 Replies View Related

VLOOKUP Multiple Occurrence For Same Lookup Value?

Feb 14, 2014

accomplish VLOOKUP for multiple instances of a same Lookup value

First let me explain about my file:-

Table~1:-

1.B2:B19 I have list of items which required to build a product

2.D2:D19 I have list of shortages against each item

3.C2:C19 I have list of dates when each item shortage will get fulfilled

Table~2:-

1.C22:C31 I have picked the largest 10 different dates from Table1 by using LARGE formula.

Against each date which is update C22:C31, respective shortage qty has to get VLOOKUPED.

When there is a same lookup value, it has to keep pick next value (Shortage Qty) for same date.

View 2 Replies View Related

Vlookup Multiple Rows With The Same Lookup Value.

Dec 3, 2009

I'm trying to get a result of all rows in a table that has the same lookup value.

For example:

David25
Brian40
Steve57
David68
David902
John11
Gerry3

I want to look for David and that the result will be all rows that starts with David:

David 25
David 68
David 902

I tried using vlookup but it always returns the first row.

View 3 Replies View Related

VLOOKUP In VBA Where Lookup Range Is From The Sheet To Right

May 16, 2014

I am writing the code for a VLOOKUP in VBA..I was using the .Formula = "=VLOOKUP(LookupValue, LookupRange , Column No, 0 )"

But, the problem is that the LookupRange is to be done from different sheets everyday as the name of this sheet is going to be like 16th May,17th May etc.

The common thing is that this sheet is the adjacent sheet next to the one in which we are trying to get the VLOOKUP work...so what solution can i use.

View 12 Replies View Related

VLOOKUP Where LOOKUP Range Is Two Columns?

Oct 27, 2011

I need to make a VLOOKUP in a sheet which I do not own or control the layout of. Therefore I cannot add any columns in the source to assist me in my lookup.

My VLOOKUP needs to look at two values/columns since the value in one column is not a unique identifier. This is easy in the value I want to lookup but not so easy in the lookup range in the source sheet. Ideally I would like to write my formula something like this:

=VLOOKUP(A2&B2;CONCATENATE('[OtherWorkbook.xlsx]Sheet1'!$M$2:$M$9;'[OtherWorkbook.xlsx]Sheet1'!$N$2:$N$9);2;FALSE)

View 9 Replies View Related

VLOOKUP Using Results Of Formula As LOOKUP VALUE?

Oct 25, 2013

I have a cell that I must remove the first 2 characters "RO" for each value in a column on a sheet called RAW DATA and put into a cell on a sheet called ROSS DATA. Some of the values in that cell have 3 digits after the RO and some have 5 digits. To do that I used

=REPLACE('RAW DATA'!A3,1,2,"")

Then I need to use this new resultant string as the lookup value in a VLOOKUP. The VLOOKUP will be looking at a named range called DAP on a sheet called DAP, in column 5 for an exact match and I need it to return that value to the cell.

I have tried using the indirect to no avail in different ways, and not sure that I fully understand the usage.

View 9 Replies View Related

VLOOKUP-lookup Value Has Been Both TRIMmed And VALUEd

Mar 14, 2007

The formula I'm using is: =VLOOKUP($B724,Sheet1!$A$2:$S$17120,6,FALSE)

The B column in the lookup value has been both TRIMmed and VALUEd. The column that would contain the matches in Sheet1 has also been TRIMmed and VALUEd. I've confirmed that if I manually search for my value in Sheet1 then I find the data I'm looking for, but I always get #NA when this is run.

I have successfully done other VLOOKUPs between different columns in these worksheets, but can't get this one working. Excel version is 2003 SP2 if that makes a difference.

View 9 Replies View Related

Vlookup Returns #N/A When Lookup Value Is Not Found

Oct 29, 2008

This formula works perfectly except when worksheet 2 has a code that is not on worksheet 1, then I get the error #N/A. I understand why I get the error, but not how to fix it. Obviously some sort of nesting - but what and how?

What I want on worksheet 2, column I - if there is a code on worksheet 2 but not on worksheet 1 - a return of "N/A"...

View 9 Replies View Related

Vlookup- Multiple Conditions For Lookup Value

Jan 8, 2009

ABB
MetricsCategoryJan 2008VisitsTravel50view_offerTravel10


Above is the data I want to lookup on. I need to be able to do a lookup for travel visits and a seperate lookup for travel view_offers.

Is there someway to do this with a vlookup or maybe match index?

View 9 Replies View Related

Vlookup Errors (#N/A!) When Lookup Value Is Present

Oct 3, 2006

After dumping the Showcase Query result into an Excel file I am using a vlookup to insert data. My problem is that the vlookup won't find results unless I actually click on the cell that contains the lookup value to activate it. I have tried formatting the cells (both lookup and the return value) as general and text and nothing works (which makes my macro usless if it requires user intervention).

View 3 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved