Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredJoin 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.
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.
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.
| User | Count |
|---|---|
| 78 | |
| 46 | |
| 37 | |
| 31 | |
| 26 |