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
SonyaNadesan
Regular Visitor

Power BI Matrix Columns

I have a matrix that shows data for the selected month.

 

However, the requirements has changed - the user would like to select a specific date, for which the data for the past week is displayed in our matrix.

 

How can I achieve this, given that I cannot drop a measure into the Columns section of the matrix?

1 ACCEPTED SOLUTION
bhanu_gautam
Super User
Super User

@SonyaNadesan ,

Create a measure to capture the selected date from a slicer.

SelectedDate = SELECTEDVALUE('DateTable'[Date])

 

Create a measure to calculate the data for the past week based on the selected date.

PastWeekData =
CALCULATE(
SUM('YourTable'[YourDataColumn]),
DATESINPERIOD('DateTable'[Date], [SelectedDate], -7, DAY)
)

 

Add the date column from your date table to the Columns section of the matrix.

Add the PastWeekData measure to the Values section of the matrix.




Did I answer your question? Mark my post as a solution! And Kudos are appreciated

Proud to be a Super User!




LinkedIn






View solution in original post

1 REPLY 1
bhanu_gautam
Super User
Super User

@SonyaNadesan ,

Create a measure to capture the selected date from a slicer.

SelectedDate = SELECTEDVALUE('DateTable'[Date])

 

Create a measure to calculate the data for the past week based on the selected date.

PastWeekData =
CALCULATE(
SUM('YourTable'[YourDataColumn]),
DATESINPERIOD('DateTable'[Date], [SelectedDate], -7, DAY)
)

 

Add the date column from your date table to the Columns section of the matrix.

Add the PastWeekData measure to the Values section of the matrix.




Did I answer your question? Mark my post as a solution! And Kudos are appreciated

Proud to be a Super User!




LinkedIn






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.