Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I have one sheet with product id, length, material, index and unit/length
price for multiple stores for a given market. I am trying to generate a new sheet with proposed product id, new length and total cost based on the unit length and product id of the current sheet. Each product could have multiple unit/length prices at each store or none at all. My main objective is to get a none zero cost for the stores that currently have at least one unit price. Can I use vlookup to search the index and return with the first or max none zero corresponding unit cost for store 1,2,3,.....? My current formula returns with the first match whether it is a price or a blank. So for tube1steel store 1, my value is blank and not 1.50 as in store 2. Prod lngth Mat Index Store Store Store 1 2 3 tube1 1.0 steel tube1steel 1.50 tube1 1.8 steel tube1steel 1.50 1.50 tube2 1.8 steel tube2steel 1.25 1.30 tube1 2.4 steel tube1steel 1.45 1.50 1.50 tube2 2.4 steel tube2steel 1.35 Actual formula below. The * represents where the item was present, but did not have pricing. A blank is present when the item was not present. =IF(VLOOKUP($J5,'All Dowels price per length'!$G$2:$AS$94,3,FALSE)="*","*",IF(VLOOKUP($J 5,'All Dowels price per length'!$G$2:$AS$94,3,FALSE)="","",VLOOKUP($J5,'Al l Dowels price per length'!$G$2:$AS$94,3,FALSE)*$D5)) Any help would be appreciated. |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I would have a helper column after Store 3 with the formula below...
=IF(COUNT(E7:G7),INDEX(E7:G7,MATCH(TRUE,INDEX(E7:G 7<"",0),0)),"") (this assumes that the first row of row of information is in column 7 (and store 1 is in column E, store 2 is in column F, store3 is in column G -- Wag more, bark less "JBEmpire" wrote: I have one sheet with product id, length, material, index and unit/length price for multiple stores for a given market. I am trying to generate a new sheet with proposed product id, new length and total cost based on the unit length and product id of the current sheet. Each product could have multiple unit/length prices at each store or none at all. My main objective is to get a none zero cost for the stores that currently have at least one unit price. Can I use vlookup to search the index and return with the first or max none zero corresponding unit cost for store 1,2,3,.....? My current formula returns with the first match whether it is a price or a blank. So for tube1steel store 1, my value is blank and not 1.50 as in store 2. Prod lngth Mat Index Store Store Store 1 2 3 tube1 1.0 steel tube1steel 1.50 tube1 1.8 steel tube1steel 1.50 1.50 tube2 1.8 steel tube2steel 1.25 1.30 tube1 2.4 steel tube1steel 1.45 1.50 1.50 tube2 2.4 steel tube2steel 1.35 Actual formula below. The * represents where the item was present, but did not have pricing. A blank is present when the item was not present. =IF(VLOOKUP($J5,'All Dowels price per length'!$G$2:$AS$94,3,FALSE)="*","*",IF(VLOOKUP($J 5,'All Dowels price per length'!$G$2:$AS$94,3,FALSE)="","",VLOOKUP($J5,'Al l Dowels price per length'!$G$2:$AS$94,3,FALSE)*$D5)) Any help would be appreciated. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
If (Vlookup 0) working, but what if Vlookup cell does not exist | Excel Worksheet Functions | |||
VLookUp - Does the VLookUp return the exact information? | Excel Worksheet Functions | |||
Vlookup in vlookup - taking the result as array name | Excel Worksheet Functions | |||
Combine VLOOKUP and IF function so #NA isn't returned as a value from VLOOKUP | Excel Discussion (Misc queries) | |||
Vlookup -=VLOOKUP(F9,LookUp1!$A$2:$B$1504,2,FALSE) | New Users to Excel |