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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

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
Anonymous
Not applicable

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

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

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

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
July PBI25 Carousel

Power BI Monthly Update - July 2025

Check out the July 2025 Power BI update to learn about new features.

Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 community update carousel

Fabric Community Update - June 2025

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