Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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?
Solved! Go to Solution.
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.
Proud to be a Super User! |
|
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.
Proud to be a Super User! |
|
Check out the July 2025 Power BI update to learn about new features.
User | Count |
---|---|
24 | |
10 | |
7 | |
6 | |
6 |
User | Count |
---|---|
30 | |
11 | |
11 | |
10 | |
6 |