This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreLevel up your Power BI skills this month - build one visual each week and tell better stories with data! Get started
I have this data:
(last column shall be a sum grouped by BU and UP).
I have achieved the last column SubTotalBU, by doing:
My goal is to get the max of column SubTotalBU for each UP… That is; I need a column with all values 90 in this case.
I have tried using MAX of SubTotalBU, but it doesn’t work with measures… How can I get it?
Solved! Go to Solution.
Hi @Anonymous ,
Please try to create a measure like below:
Measure = MAXX(ALL(Sheet1),[SubTotalBU])
Best Regards,
Liang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
doesn't work (last column below...). I aim to get the max (that is, 90 in every row...)
Hi @Anonymous ,
Please try to create a measure like below:
Measure = MAXX(ALL(Sheet1),[SubTotalBU])
Best Regards,
Liang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
@Anonymous , Try a measure like
maxx(addcolumns(summarize(Sheet1, Sheet1[BU],Sheet1[UP]),"_1", calculate(sum(Sheet1[NSR]),filter(allselected(Sheet1),Sheet1[BU] =max(Sheet1[BU]) && Sheet1[UP] =max(Sheet1[UP])))), [_1])
Check out the April 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 37 | |
| 28 | |
| 28 | |
| 19 | |
| 18 |
| User | Count |
|---|---|
| 69 | |
| 38 | |
| 32 | |
| 28 | |
| 24 |