Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I have a list of part numbers on one Worksheet in a Workbook. There are 110
rows of data with 3 columns of information associated with each part number (qty, pt number, price) I want to have another worksheet in my workbook automatically populated with all 3 columns of information only for the items where a user has indicated a selected qty for each part number...how do I accomplish this? |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Fritz,
The solution will depend on whether your part number is in the first or second column of the other sheet. IF it is in the FIRST column, then use =IF(qty0,VLOOKUP(partnumber,Address of 3 columns of Table in $$ form, 2 for quantity or 3 for price, False), "") It will look like =IF(B20,VLOOKUP(A2, Sheet1!$A$1:$C$110, 3, False), "") If it is in the SECOND column, then use =IF(qty0,INDEX(FirstColumn, MATCH(partnumber,second col of Table in $$ form, False),"") It will look like =IF(B20 ,INDEX(Sheet1!$A:$A, MATCH(A2, Sheet1!$B:$B, False),"") HTH, Bernie MS Excel MVP "Fritz" wrote in message ... I have a list of part numbers on one Worksheet in a Workbook. There are 110 rows of data with 3 columns of information associated with each part number (qty, pt number, price) I want to have another worksheet in my workbook automatically populated with all 3 columns of information only for the items where a user has indicated a selected qty for each part number...how do I accomplish this? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
List to select up to 6 selected responses | Excel Discussion (Misc queries) | |||
Printing selected parts of a list.... | Excel Worksheet Functions | |||
Extracting selected records from longer list | Excel Discussion (Misc queries) | |||
A validated List which link to selected cells according to what is selected on the list | Excel Worksheet Functions | |||
Value selected on drop down list, look-up on different sheet | Excel Worksheet Functions |