The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
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 |
---|---|
17 | |
8 | |
7 | |
6 | |
6 |
User | Count |
---|---|
26 | |
13 | |
12 | |
9 | |
8 |