i need a formula that will look up a word then give me the numbers in a cell
next to that word. the formula i'm using (which isn't working right) is
=IF(ISERROR(VLOOKUP(A6,'Export
1'!$B$1:$Z$65467,11,FALSE)),"",VLOOKUP(A6,'Export 1'!$B$1:$Z$65467,11,FALSE))
this may be too much formula for what i need but i'm not sure... here's
what i'm actually trying to do. i would like to set up a check list or
something so when people select a certain row by adding a X, the following
information will auto fill onto another sheet...
|
|
0
|
|
|
|
Reply
|
Utf
|
5/7/2010 4:49:01 PM |
|
Your vlookup looks ok. If its not returning 100% correct results, then it's
probably your data quality that's causing it, eg extraneous white spaces
throwing correct matching off. You could use TRIM to improve robustness,
something like this: =VLOOKUP(TRIM(A6), ....). Joy? hit the YES below
--
Max
Singapore
---
"dnmusic" wrote:
> i need a formula that will look up a word then give me the numbers in a cell
> next to that word. the formula i'm using (which isn't working right) is
>
> =IF(ISERROR(VLOOKUP(A6,'Export
> 1'!$B$1:$Z$65467,11,FALSE)),"",VLOOKUP(A6,'Export 1'!$B$1:$Z$65467,11,FALSE))
>
> this may be too much formula for what i need but i'm not sure... here's
> what i'm actually trying to do. i would like to set up a check list or
> something so when people select a certain row by adding a X, the following
> information will auto fill onto another sheet...
|
|
0
|
|
|
|
Reply
|
Utf
|
5/7/2010 8:23:01 PM
|
|
|
1 Replies
192 Views
(page loaded in 1.74 seconds)
Similiar Articles: VLOOKUP: Referencing worksheets whose names contain commas ...Hello, How do I make a VLOOKUP formula reference a different worksheet that has a comma in its name? For instance, in Sheet1 I want to refer to ... Vlookup multiple changes - microsoft.public.excel.miscI was wondering if there is a formulas where I can do vlookup on multiple changes. I have a list of unique number and they can change a few time wi... VLookup and Indirect - microsoft.public.excel.programming ...I am currently using INDIRECT to get the lookup_value for VLOOKUP The formula I am using is: =VLOOKUP(INDIRECT(D2),INDIRECT("'"&B2&"'!A2:F20"),2,)... VBA VLookup Problem - microsoft.public.excelI'm trying to run a macro that uses a vlookup that is getting the lookup value from cell J2 of Book1.xlsx (which was just created through a macro), ... vlookup across multiple pages - microsoft.public.excel.worksheet ...I'm trying to use vlookup to give me a summary of some number throughout a workbook. It has to sum across about 25 worksheets. not all worksheets ... Vlookup in multiples columns - microsoft.public.excel.worksheet ...I have the following simple spreadsheet. I'm tryping to use VLOOKUP to find the rate of pay based on the Job Type and the Hourly Pay which refers ... vlookup to another worksheet - microsoft.public.excel.worksheet ...I have a filled column in worksheet_1 called "Reference". I have another empty column in that worksheet, called "Data" that I want to populate with ... Vlookup - formula not working - microsoft.public.mac.office.excel ...Version: 2008 Operating System: Mac OS X 10.6 (Snow Leopard) Processor: Intel Hi, I'm really frustrated, and am wondering if i'm an idiot, or i... VLOOKUP returns formula instead of result - microsoft.public.excel ...When I do a VLOOKUP formula, the cell returns the text of the formula instead of the result. I get the correct result when looking the in Formula W... Remove Duplicates From VLOOKUP Result - microsoft.public.excel ...Good Morning All, I am trying to remove duplicate results for a VLOOKUP query. See example below, A ... VLOOKUP - Excel - Office.comSearches for a value in the first column of a table array and returns a value in the same row from another column in the table array. The V in VLOOKUP stands for ... How to Use VLOOKUP Function | Excel VLOOKUP ExampleExcel tutorial on how to use Excel VLOOKUP function for pulling in data from another worksheet. Includes VLOOKUP example worksheets. MS Excel: VLookup Function - Tech on the NetThe VLookup function searches for value in the left-most column of table_array and returns the value in the same row based on the index_number. vlookup Excel Function Tutorial Example how to formula Help guideVlookup tutorial help and example - learn how to use it. Free Excell training videos v-lookup formula guide. Leer vlook up functie eenvoudig gids handleiding Excel VLookup Function ExamplesExcel VLOOKUP function pulls data from table in Excel. VLookup example, VLookup arguments, troubleshooting. Video shows Excel VLOOKUP steps. 7/17/2012 8:28:50 AM
|