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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

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
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

April Fabric Community Update

Fabric Community Update - April 2024

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

Top Solution Authors