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.
Hi Folks,
Got a inventory where I got a calculated column. For each computer, gotta keep only one value (the max), to sum only the max
How can I get a measure that sum the max of each Computer Name in my pivot table ?
Thanks for your help folks !
Solved! Go to Solution.
Hi,
I am not sure how your semantic model looks like, but I tried to create a sample pbix file like below.
Please check the below picture and the attached pbix file.
expected result measure: =
SUMX (
VALUES ( data[computer_name] ),
CALCULATE (
MAX ( data[total_point] )
)
)
Hi,
I am not sure how your semantic model looks like, but I tried to create a sample pbix file like below.
Please check the below picture and the attached pbix file.
expected result measure: =
SUMX (
VALUES ( data[computer_name] ),
CALCULATE (
MAX ( data[total_point] )
)
)
User | Count |
---|---|
15 | |
9 | |
8 | |
6 | |
5 |
User | Count |
---|---|
31 | |
18 | |
13 | |
7 | |
5 |