This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreLevel up your Power BI skills this month - build one visual each week and tell better stories with data! Get started
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 April 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 5 | |
| 4 | |
| 3 | |
| 3 | |
| 3 |