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!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
I have created the above table visual by placing the Category & Manu as Rows and Date as column and Measure [Monthly%] in Values. I want to calculate the Row wise Maximum and Minimum values and those columns need to appear on the right side
Solved! Go to Solution.
Hi @Sakthikumar ,
I think you can try to add min and max measures into value fields.
MIN =
VAR _SUMMARIZE =
SUMMARIZE (
ALLSELECTED ( 'TableName' ),
[Category],
[MANU],
[Date],
"Monthly%", [Monthly%]
)
RETURN
MINX (
FILTER (
_SUMMARIZE,
[Category] = MAX ( 'TableName'[Category] )
&& [MANU] = MAX ( 'TableName'[MANU] )
),
[Monthly%]
)
MAX =
VAR _SUMMARIZE =
SUMMARIZE (
ALLSELECTED ( 'TableName' ),
[Category],
[MANU],
[Date],
"Monthly%", [Monthly%]
)
RETURN
MAXX (
FILTER (
_SUMMARIZE,
[Category] = MAX ( 'TableName'[Category] )
&& [MANU] = MAX ( 'TableName'[MANU] )
),
[Monthly%]
)
Turn off Text Wrop.
Then change the column width which you don't need to 0.
Best Regards,
Rico Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Sakthikumar ,
I think you can try to add min and max measures into value fields.
MIN =
VAR _SUMMARIZE =
SUMMARIZE (
ALLSELECTED ( 'TableName' ),
[Category],
[MANU],
[Date],
"Monthly%", [Monthly%]
)
RETURN
MINX (
FILTER (
_SUMMARIZE,
[Category] = MAX ( 'TableName'[Category] )
&& [MANU] = MAX ( 'TableName'[MANU] )
),
[Monthly%]
)
MAX =
VAR _SUMMARIZE =
SUMMARIZE (
ALLSELECTED ( 'TableName' ),
[Category],
[MANU],
[Date],
"Monthly%", [Monthly%]
)
RETURN
MAXX (
FILTER (
_SUMMARIZE,
[Category] = MAX ( 'TableName'[Category] )
&& [MANU] = MAX ( 'TableName'[MANU] )
),
[Monthly%]
)
Turn off Text Wrop.
Then change the column width which you don't need to 0.
Best Regards,
Rico Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
User | Count |
---|---|
98 | |
76 | |
75 | |
49 | |
27 |