Forum Discussion
Vlookup to reference weekly sales
- Nov 22, 2022
VLOOKUP is a bit more direct but if you need to pull previous date's revenue, you can use INDEX-MATCH for both:
Current:=INDEX(Sheet2!$D$1:$D$21,MATCH($B$5,Sheet2!$C$1:$C$21,0))Previous:
=INDEX(Sheet2!$D$1:$D$21,MATCH($B$5,Sheet2!$C$1:$C$21,0)-1)
Harun24HR can you filter by a cell before? I tried filter but it just shows me the results.
basiclly I want to select a week from my list, and then it populates the sales for that week, but when those cells populate I want it to select the week before in the column next to it for a comparison,
so like this
list of dates
sales data here populated by list | sales data here populated by the week before the selected week in the list
- Harun24HRNov 20, 2022Bronze ContributorCan you show some sample data and desired result?
- Mikeyh146Nov 21, 2022Copper Contributor
Sorry should have started with this.
Attached are screen grabs from my excel,
I have drawn the flow of how I want it to go.
Select date > Fills cells > when cells fill it fills the other cells but 1 date before
- Patrick2788Nov 22, 2022Silver Contributor
VLOOKUP is a bit more direct but if you need to pull previous date's revenue, you can use INDEX-MATCH for both:
Current:=INDEX(Sheet2!$D$1:$D$21,MATCH($B$5,Sheet2!$C$1:$C$21,0))Previous:
=INDEX(Sheet2!$D$1:$D$21,MATCH($B$5,Sheet2!$C$1:$C$21,0)-1)