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

Level up your Power BI skills this month - build one visual each week and tell better stories with data! Get started

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
April Power BI Update Carousel

Power BI Monthly Update - April 2026

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

Fabric SQL PBI Data Days

Data Days 2026 coming soon!

Sign up to receive a private message when registration opens and key events begin.

New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.