Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I have a master Inventory file with a full item list (sheet1)which has 3600
SKUs by item then color. I am creating a cheat sheet (sheet2) which has 300 SKUs setup by item only that I want to update the pricing from the master file. Currently the cheat sheet points to the cell that has the pricing for 1 of the item I want to use. The issue I have is some of the line numbers getting deleted in the master file which causes sheet2 to grab the next item in line causing MASS CONFUSION. I have now included a SKU column in sheet2 which I want to tie to the SKU number in the master file. Sorry if this is so confusing.... I just want the SKU number of sheet2 to validate using the SKU number of sheet1 before grabbing the pricing column. |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Sounds like a vlookup will do this just fine, have you tried it? If not look
into it and post back any questions. -- -John Please rate when your question is answered to help us and others know what is helpful. "jerminski73" wrote: I have a master Inventory file with a full item list (sheet1)which has 3600 SKUs by item then color. I am creating a cheat sheet (sheet2) which has 300 SKUs setup by item only that I want to update the pricing from the master file. Currently the cheat sheet points to the cell that has the pricing for 1 of the item I want to use. The issue I have is some of the line numbers getting deleted in the master file which causes sheet2 to grab the next item in line causing MASS CONFUSION. I have now included a SKU column in sheet2 which I want to tie to the SKU number in the master file. Sorry if this is so confusing.... I just want the SKU number of sheet2 to validate using the SKU number of sheet1 before grabbing the pricing column. |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Hi John,
I was actually working with the VLOOKUP function but am unable to make it work. This is the function I have defined... =VLOOKUP("a10",[RShopinmas.xls]hopinmas!$A$2:$S$4500,19,FALSE) a10 is the cell with the SKU on my cheat sheet. [RShopinmas.xls]hopinmas!$A$2:$S$4500 is my Inventory master file with column A being SKU number to match to and column S being the price column I want to pull pricing from. 19 is in column S False because I want exact lookups. Anything obviously wrong? |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I have tried using the master file both as its own workbook and as a new
sheet in the same workbook as my cheat sheet. I keep getting #N/A as my result. This is the function I have defined... =VLOOKUP(a10,[RShopinmas.xls]hopinmas!$A$2:$S$4500,19,FALSE) seperate workbook =VLOOKUP(a10,hopinmas!$A$2:$S$4500,19,FALSE)same workbook a10 is the cell with the SKU on my cheat sheet. hopinmas!$A$2:$S$4500 is my Inventory master file with column A being SKU number to match to and column S being the price column I want to pull pricing from. 19 is in column S False because I want exact lookups. Anything obviously wrong? |
#5
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Following your descriptions, you seem to be using it correctly. Hence,
if you get #N/A it means that the value of A10 is not found in hopinmas!A:A. Possible reasons: 1. A10 contains a number and the values in hopinmas!A:A *appear* to be numbers but are actually text, or vice versa. Use the functions ISTEXT() and ISNUMBER() to see if either is text. 2. If your sku's have dots, or things that might make them look like decimal numbers, then maybe you have a rounding issue. In general, try the following formula in a blank cell =A10=hopinmas!Ax where you manually find the row x where the same sku value lies as in A10. If you get FALSE you know something is wrong. Depending on the reason of discrepancy different things can be suggested. HTH Kostis Vezerides On Oct 18, 4:24 pm, jerminski73 wrote: I have tried using the master file both as its own workbook and as a new sheet in the same workbook as my cheat sheet. I keep getting #N/A as my result. This is the function I have defined... =VLOOKUP(a10,[RShopinmas.xls]hopinmas!$A$2:$S$4500,19,FALSE) seperate workbook =VLOOKUP(a10,hopinmas!$A$2:$S$4500,19,FALSE)same workbook a10 is the cell with the SKU on my cheat sheet. hopinmas!$A$2:$S$4500 is my Inventory master file with column A being SKU number to match to and column S being the price column I want to pull pricing from. 19 is in column S False because I want exact lookups. Anything obviously wrong? |
#6
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
THIS IS EXACTLY WHAT I FOUND OUT!!!
A10 contains a number and the values in hopinmas!A:A *appear* to be numbers but are actually text, or vice versa. Is there somewhere I can find a list of functions and what they are supposed to do? It is semi foreign when I look at the function listing in the "insert" menu Thanks |
#7
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Problem solved on the #N/A issue, now the field is blank, A blank field
presents problems for formulas on other sheets. Is there a way to use this same function and have it enter "0" if item not found? =IF(ISNA(VLOOKUP(TEXT(A43,"000000"),Mas!$A$2:$S$50 00,19,FALSE)),"",VLOOKUP(TEXT(A43,"000000"),Mas!$A $2:$S$5000,19,FALSE)) |
#8
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
In your formula, replace the "" with 0.
-- Biff Microsoft Excel MVP "jerminski73" wrote in message ... Problem solved on the #N/A issue, now the field is blank, A blank field presents problems for formulas on other sheets. Is there a way to use this same function and have it enter "0" if item not found? =IF(ISNA(VLOOKUP(TEXT(A43,"000000"),Mas!$A$2:$S$50 00,19,FALSE)),"",VLOOKUP(TEXT(A43,"000000"),Mas!$A $2:$S$5000,19,FALSE)) |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Move data to new sheet - rename sheet based on criteria ? | Excel Discussion (Misc queries) | |||
create a formula in one sheet that would read data from separate sheet automatically | Excel Discussion (Misc queries) | |||
Excel: have add'l rows entered in sheet 1 always show up in sheet | Excel Worksheet Functions | |||
How do I select price from sheet.b where sheet.a part no = sheet.b | Excel Worksheet Functions | |||
relative sheet references ala sheet(-1)!B11 so I can copy a sheet. | Excel Discussion (Misc queries) |