Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started

Reply
Anonymous
Not applicable

How to get Yesterday TOp 5 Sales by Category ?

I have a Date slicer with certain date range, balance and Product code.

So i have tried everything that i found in google but all failed.

I am just trying to get Top5 Product COde  (Yesterday Only) Yesterday only.

Yesterday= max (date)-1  (depending on date range slected date slicer)

Any one? Pelase help me. 🙂

Thanks in Advance
PBIX File 

 

1 ACCEPTED SOLUTION
v-zhenbw-msft
Community Support
Community Support

Hi @Anonymous ,

 

We can create a date table and a measure to meet your requirement.

 

1. Create a date table and there is no relationship between two tables.

 

Date = CALENDARAUTO()

 

how1.jpg

 

2. Then we can create a measure, and use the measure to create a table visual.

 

Measure = 
var _today = MAX('Date'[Date])
var _yesterday = _today - 1
var _result = CALCULATE(SUM(Sheet1[BalanceFCY]),FILTER(Sheet1,Sheet1[DataDate]=_yesterday))
return
_result

 

3. We need to configure the TOPN in filters on this visual, put the measure in ProductCode field.

 

how2.jpg

 

4. At last we create a date slicer and the result like this,

 

how3.jpg

 

If it doesn’t meet your requirement, could you please show the exact expected result based on the table that you have shared?

 

Best regards,

 

Community Support Team _ zhenbw

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

BTW, pbix as attached.

View solution in original post

2 REPLIES 2
v-zhenbw-msft
Community Support
Community Support

Hi @Anonymous ,

 

We can create a date table and a measure to meet your requirement.

 

1. Create a date table and there is no relationship between two tables.

 

Date = CALENDARAUTO()

 

how1.jpg

 

2. Then we can create a measure, and use the measure to create a table visual.

 

Measure = 
var _today = MAX('Date'[Date])
var _yesterday = _today - 1
var _result = CALCULATE(SUM(Sheet1[BalanceFCY]),FILTER(Sheet1,Sheet1[DataDate]=_yesterday))
return
_result

 

3. We need to configure the TOPN in filters on this visual, put the measure in ProductCode field.

 

how2.jpg

 

4. At last we create a date slicer and the result like this,

 

how3.jpg

 

If it doesn’t meet your requirement, could you please show the exact expected result based on the table that you have shared?

 

Best regards,

 

Community Support Team _ zhenbw

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

BTW, pbix as attached.

Helpful resources

Announcements
Sept PBI Carousel

Power BI Monthly Update - September 2024

Check out the September 2024 Power BI update to learn about new features.

September Hackathon Carousel

Microsoft Fabric & AI Learning Hackathon

Learn from experts, get hands-on experience, and win awesome prizes.

Sept NL Carousel

Fabric Community Update - September 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors