Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hello,
I hope you can help.
I have set up a slicer + measure combo to display a measure based on quarter selected.
ex :
Solved! Go to Solution.
Hi @qmartiny
You could use two button to switch between each Quarter meausre or all quarter measures to show on a table.
Hi @qmartiny
If you have a table with dates and value column,
you could create a date table,
date =
ADDCOLUMNS (
CALENDARAUTO (),
"year", YEAR ( [Date] ),
"month", MONTH ( [Date] ),
"quarter", IF (
MONTH ( [Date] ) <= 3,
"Q1",
IF ( MONTH ( [Date] ) <= 6, "Q2", IF ( MONTH ( [Date] ) <= 9, "Q3", "Q4" ) )
)
)
add "quarter" from "date table" to the matrix "column" field,
Hi Maggie @v-juanli-msft
The problem I am facing is that the values I want to show exist only as measures with (CALCULATE(DISTINCTCOUNT, FILTER)) logic.
There is no direct link between a date and a measure for example. The business looks at quarter achievement based on multiple factors.
I have this quarter select measure to toggle between each measure based on slicer.
But now I want to show each measure at once in the same table.
That';s the issue I am facing.
Thanks again
Q
Hi @qmartiny
You could use two button to switch between each Quarter meausre or all quarter measures to show on a table.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.