Hey guys,
I'm currently trying to create a "cheat sheet" for some Pricing.
Currently, "Sheet1" looks like this. I have each column represented for the Size/Style/Price/Date.
[TABLE="class: grid, width: 500"]
<tbody>[TR]
[TD]Size[/TD]
[TD]Style[/TD]
[TD]Price[/TD]
[TD]Date[/TD]
[/TR]
[TR]
[TD]24 x 42[/TD]
[TD]Harvey 2[/TD]
[TD]42.88[/TD]
[TD]4-12-19[/TD]
[/TR]
[TR]
[TD]30 x 42[/TD]
[TD]Harvey 2[/TD]
[TD]45.05[/TD]
[TD]4-12-19[/TD]
[/TR]
[TR]
[TD]42 x 42[/TD]
[TD]Harvey 2[/TD]
[TD]52.58[/TD]
[TD]4-12-19[/TD]
[/TR]
[TR]
[TD]24 x 42[/TD]
[TD]Harvey 2[/TD]
[TD]43.08[/TD]
[TD]6-27-19[/TD]
[/TR]
[TR]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
</tbody>[/TABLE]
My questions is, can I get my "Sheet2" VLOOKUP to return multiple pricing and dates? I currently have it setup to only return 1 Item. But as you can see in the above table, I have ( 2 ) 24 x 42 with different pricing and different dates.
Is it possible to have VLOOKUP return each of those items without repeating and putting the most current date at the top then descend?
[TABLE="class: grid, width: 500"]
<tbody>[TR]
[TD]Size[/TD]
[TD]Style[/TD]
[TD]Price[/TD]
[TD]Date[/TD]
[/TR]
[TR]
[TD]24 x 42[/TD]
[TD]Harvey 2[/TD]
[TD]42.88[/TD]
[TD]4-12-19[/TD]
[/TR]
[TR]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
</tbody>[/TABLE]
EDIT:
This is the code I'm using to find each value, but need to return multiple.
Hopefully I explained this well enough for someone to help.
Thanks,
Terrick
I'm currently trying to create a "cheat sheet" for some Pricing.
Currently, "Sheet1" looks like this. I have each column represented for the Size/Style/Price/Date.
[TABLE="class: grid, width: 500"]
<tbody>[TR]
[TD]Size[/TD]
[TD]Style[/TD]
[TD]Price[/TD]
[TD]Date[/TD]
[/TR]
[TR]
[TD]24 x 42[/TD]
[TD]Harvey 2[/TD]
[TD]42.88[/TD]
[TD]4-12-19[/TD]
[/TR]
[TR]
[TD]30 x 42[/TD]
[TD]Harvey 2[/TD]
[TD]45.05[/TD]
[TD]4-12-19[/TD]
[/TR]
[TR]
[TD]42 x 42[/TD]
[TD]Harvey 2[/TD]
[TD]52.58[/TD]
[TD]4-12-19[/TD]
[/TR]
[TR]
[TD]24 x 42[/TD]
[TD]Harvey 2[/TD]
[TD]43.08[/TD]
[TD]6-27-19[/TD]
[/TR]
[TR]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
</tbody>[/TABLE]
My questions is, can I get my "Sheet2" VLOOKUP to return multiple pricing and dates? I currently have it setup to only return 1 Item. But as you can see in the above table, I have ( 2 ) 24 x 42 with different pricing and different dates.
Is it possible to have VLOOKUP return each of those items without repeating and putting the most current date at the top then descend?
[TABLE="class: grid, width: 500"]
<tbody>[TR]
[TD]Size[/TD]
[TD]Style[/TD]
[TD]Price[/TD]
[TD]Date[/TD]
[/TR]
[TR]
[TD]24 x 42[/TD]
[TD]Harvey 2[/TD]
[TD]42.88[/TD]
[TD]4-12-19[/TD]
[/TR]
[TR]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
</tbody>[/TABLE]
EDIT:
This is the code I'm using to find each value, but need to return multiple.
Code:
=VLOOKUP(A2,Sheet1!A2:D22,2,FALSE)
Thanks,
Terrick
Last edited: