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

Slicer weekly

Hello, everybody,

 

I created weekly coin sales and showing this week and previous week coin sales. Now to see both week, we need to click two weeks in a slicer part.

But my customer wants to click just once on a filter choosing just one week, previous week appear automatically.

 

Is there any method to click just one and see with previous week cooin sales as well?

 

Thank you always.

 

이미지 2122.png

2 REPLIES 2
Anonymous
Not applicable

hi @Anonymous ,

 

Please use the below Dax formula to make new MEASURE to calculate last week sale.

 

lastWeek_Sales =
VAR WeekNum_LastWeek =
    WEEKNUM ( TODAY () ) - 1
RETURN
    CALCULATE (
        SUM ( 'table'[Sale] ),
        WEEKNUM ( 'Table'[Date] ) = WeekNum_LastWeek
    )

 

You can use this measure too show last week count when this week filter is selected.

 

 

do not hesitate to give a kudo to useful posts and mark solutions as solution.

 

Regards,

Gaurav Raj Singh 

LinkedIN : https://www.linkedin.com/in/gauravrajsingh/

 

Anonymous
Not applicable

Make a disconnected date table and use it in slicer.
Create weeknum column in your main table and date table.
And then create two seperate measures of this week and previous week and use it in your table visual.

This week sales count=Calculate(count([table,[col]),filter(table,table[weeknum]= min(date[weeknum])))
Similarly create for previous week by simply adding -1 at the end.



Thanks
Pravin

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