March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Hi community!
I'm trying to calculate how much data megabyte use include the top 20% users/account.
I have a table with all kinds of data_MB values in one column, and to calculate the 80th precentile I did:
This measure brought me a value of 1136. Since I need to compare what values are above 1136 in the data_MB column, I calculated an IF-statement to see what accounts use more than 1136 MB, see picture in the DAX-bar. But when putting that value into the table it gives me an error as shown in the picture. Does anyone know how to solve this problem?
When doing an IF-statement without the percentile formula, see picture below, the table works.
Also, when removing the accountid from the table the original IF-statement works. Could it mabye be a dimention thing?
Many thanks,
Alice
Solved! Go to Solution.
Hi @Anonymous
Your current [Perc] is a measure right? If so, it should be calculated on the whole table rather than on every accountid. When you add accountid column to the table visual, the [Perc] is evaluated for every acountid so it couldn't return the correct result. Instead, you can try the following measure
test =
IF (
SUM ( 'table'[data_MB] ) > CALCULATE ( [Perc], ALLSELECTED ( 'Table' ) ),
1,
0
)
Best Regards,
Community Support Team _ Jing
If this post helps, please Accept it as Solution to help other members find it.
Hi @Anonymous
Your current [Perc] is a measure right? If so, it should be calculated on the whole table rather than on every accountid. When you add accountid column to the table visual, the [Perc] is evaluated for every acountid so it couldn't return the correct result. Instead, you can try the following measure
test =
IF (
SUM ( 'table'[data_MB] ) > CALCULATE ( [Perc], ALLSELECTED ( 'Table' ) ),
1,
0
)
Best Regards,
Community Support Team _ Jing
If this post helps, please Accept it as Solution to help other members find it.
Hi again!
It works, thank you so much for your help 🙂
Best regards,
Alice
Takk du!
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
129 | |
90 | |
75 | |
58 | |
53 |
User | Count |
---|---|
200 | |
104 | |
101 | |
67 | |
55 |