Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.
Hi Team,
when i added year wise total --- TotalMTD,TotalQTD, TotalYTD.... my questions below
1. how we can filter ? if we needed any of TotalMTD,TotalQTD, TotalYTD this ?
Thanks,
Krishna
Solved! Go to Solution.
Hi @MSMKM
One method can be acheived through ustilizing a matrix visual instead of a table. Place the Year column in the rows of the matrix and place the MeasureNames[Measure] column in the columns of the matrix. Then place the proposed measure in the values. (Please refer to attached sample file with the solution).
Measure =
SWITCH (
SELECTEDVALUE ( 'MeasureNames'[Measure] ),
"Total YTD", [Total YTD],
"Total MTD", [Total MTD],
"Total QTD", [Total QTD]
)
Hi @MSMKM
One method can be acheived through ustilizing a matrix visual instead of a table. Place the Year column in the rows of the matrix and place the MeasureNames[Measure] column in the columns of the matrix. Then place the proposed measure in the values. (Please refer to attached sample file with the solution).
Measure =
SWITCH (
SELECTEDVALUE ( 'MeasureNames'[Measure] ),
"Total YTD", [Total YTD],
"Total MTD", [Total MTD],
"Total QTD", [Total QTD]
)
Hi FreemanZ,
Recently i have attend an interview in that they are asked a question like below
If you select any One totalYTD, TotalMTD,TotalQTD, other columns will be hide? how you will do ?
User | Count |
---|---|
10 | |
8 | |
5 | |
5 | |
4 |