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
meeradominic
Frequent Visitor

Display last 14 days data in a matrix based on slicer selection

Hi All,

 

I have a requirement to display a Power BI report, which has a matrix like below. I want to display a measure (a sum) for only past 14 days from a date selected on slicer. Say if I select 17th January, I should I only see data from 4th January. If I select 16th January--> I should see only data from 3rd January etc. 

meeradominic_0-1673924341716.png

Can anyone help, please!!

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

Hi @wolfgangkb-work ,

I create a sample pbix file(see the attachment), please check if that is what you want.

1. Assume that there is one date dimension table, and DO NOT create any relationship with the fact table

yingyinr_2-1674034366048.png

2. Create a measure as below 

Flag =
VAR _seldate =
    SELECTEDVALUE ( 'Date'[Date] )
VAR _fdate =
    SELECTEDVALUE ( 'Table'[Date] )
RETURN
    IF ( _fdate >= _seldate - 13 && _fdate <= _seldate, 1, 0 )

3. Create a visual and apply the visual-level filter on the visual with the condition(Flag is 1)

yingyinr_3-1674034513314.png

In addition, you can refer the following links to get it.

Show Days Before Or After A Selected Date - Advanced Power BI Visual Techniques

yingyinr_1-1674034286711.png

If the above one can't help you get the expected result, please provide some raw data in your table (exclude sensitive data) with Text format and your expected result with backend logic and special examples. It is better if you can share a simplified pbix file. You can refer the following link to upload the file to the community. Thank you.

How to upload PBI in Community

Best Regards

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

View solution in original post

2 REPLIES 2
v-yiruan-msft
Community Support
Community Support

Hi @wolfgangkb-work ,

I create a sample pbix file(see the attachment), please check if that is what you want.

1. Assume that there is one date dimension table, and DO NOT create any relationship with the fact table

yingyinr_2-1674034366048.png

2. Create a measure as below 

Flag =
VAR _seldate =
    SELECTEDVALUE ( 'Date'[Date] )
VAR _fdate =
    SELECTEDVALUE ( 'Table'[Date] )
RETURN
    IF ( _fdate >= _seldate - 13 && _fdate <= _seldate, 1, 0 )

3. Create a visual and apply the visual-level filter on the visual with the condition(Flag is 1)

yingyinr_3-1674034513314.png

In addition, you can refer the following links to get it.

Show Days Before Or After A Selected Date - Advanced Power BI Visual Techniques

yingyinr_1-1674034286711.png

If the above one can't help you get the expected result, please provide some raw data in your table (exclude sensitive data) with Text format and your expected result with backend logic and special examples. It is better if you can share a simplified pbix file. You can refer the following link to upload the file to the community. Thank you.

How to upload PBI in Community

Best Regards

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

Hi,

Thank you so much for your answer. I tried your method as it is. And it works perfectly in a table. see below.

meeradominic_0-1674175576772.png

But when I convert it to a matrix nothing shows up. I couldn't figure out why that is.

meeradominic_1-1674175719503.png

But I managed to get required results uisng the other link you shared . Thanks again!!

meeradominic_2-1674176078083.png

 

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.