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.
Hi all,
How do I create a measure to pull the max and min total of each the columns below (to use as a card visual). Max steps-Andy Ly 68316 in this case. Thanks in advance
Hi @andyly85
I'm not sure why are you creating a measure for each name. You can simply use a matrix visual, place [Day] at the rows of the matrix, place [Name] at the columns of the matrix and place the following measure in the values of the matrix (it assumes that the required calculation is a simple sum but you need to modify based on your real requirement). The same measure can be placed in a card visual to identify the max value requested.
Result =
MAXX (
SUMMARIZE ( 'Table', 'Table'[Name], "@Value", SUM ( 'Table'[Value] ) ),
[@Value]
)
Just Create two measures for every column. and user Min and Max function.
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 |
|---|---|
| 9 | |
| 4 | |
| 4 | |
| 3 | |
| 3 |
| User | Count |
|---|---|
| 13 | |
| 9 | |
| 8 | |
| 8 | |
| 7 |