Help with Making listbox or combobox selection populate entire row of data

cory0789

New member
Joined
Sep 6, 2014
Messages
2
Reaction score
0
Points
0
I have an order form I am trying to build that I can select the Sold-To number out of the combobox, it then populates listboxes within the order sheet below, I NEED MUCH HELP TRYING to get the data to populate on the order sheet once I select a product on the order sheet...

THE ANTON AND MASTER LIST SHEETS ARE THE TWO TO LOOK AT ON THIS WORKBOOK...

So I select a sold to number on the Anton Sheet, I then go down and select a product under Process Products & upon selection all other data in that row for that product should be input from the master list onto the order sheet...

Thanks for all the help hopefully someone can help me out here!!!

View attachment Invoicing Testing.xls
 
Ok your workbook is very messy.
Using code where you should be using simple data validation and named ranges,
Master List columns don't match the Anton sheet

What you are really asking for is do a vlookup with a sold number and a Product number
For this you need to use index and array match

create the named ranges and in the destination cell put this formula as an ARRAY (control shift enter) not ENTER
{=INDEX(MasterList,MATCH(1,(A39=Product)*(C27=SoldTo),0),5)}
where Master list is your master list
Product is a named range in master list sheet, col E I think
Soldto is a named range in master list sheet, col B
In the example above I'm returning column 5 in the masterList

For further help read
http://exceltactics.com/vlookup-mul...atch/#Using_INDEX_and_MATCH_with_Two_Criteria
and http://spreadsheets.about.com/od/lo...2010-vlookup-multiple-values-sbs-tutorial.htm (although concatenation can have memory issues)
 
Back
Top