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
I would like to see bubbles as below, but when I use a percentage value I get the results above???
Anybody know how I can achieve normal bubbles with percentage values?
Solved! Go to Solution.
Hi @Ardydardy
For your question, here is the method I provided:
Here's some dummy data
“Table”
Create a measure.
Percent % =
var _abs = ABS(SELECTEDVALUE('Table'[Values]))
var _value = SELECTEDVALUE('Table'[Values])
var _total =
SUMX(
ALL('Table'),
_abs
)
RETURN
DIVIDE(_value, _total)
Here is the result.
If you're still having problems, provide some dummy data. It is best presented in the form of a table.
Regards,
Nono Chen
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi! Thank you so much for your help. I really appreciate it 😍. I am only using measures compared to last year measures and I worked out that the problem was mostly due to problems/multiple values in the data model.
Hi @Ardydardy
For your question, here is the method I provided:
Here's some dummy data
“Table”
Create a measure.
Percent % =
var _abs = ABS(SELECTEDVALUE('Table'[Values]))
var _value = SELECTEDVALUE('Table'[Values])
var _total =
SUMX(
ALL('Table'),
_abs
)
RETURN
DIVIDE(_value, _total)
Here is the result.
If you're still having problems, provide some dummy data. It is best presented in the form of a table.
Regards,
Nono Chen
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi! Thank you so much for your help. I really appreciate it 😍. I am only using measures compared to last year measures and I worked out that the problem was mostly due to problems/multiple values in the data model.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
125 | |
85 | |
69 | |
53 | |
44 |
User | Count |
---|---|
204 | |
105 | |
99 | |
64 | |
54 |