Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
Anonymous
Not applicable

Map visual bubble is a line instead of a bubble with negative percentage values

Ardydardy_2-1724829739238.png

I would like to see bubbles as below, but when I use a percentage value I get the results above???

Ardydardy_1-1724829705680.png

Anybody know how I can achieve normal bubbles with percentage values?

2 ACCEPTED SOLUTIONS
Anonymous
Not applicable

Hi @Anonymous 

 

For your question, here is the method I provided:

 

Here's some dummy data

 

“Table”

vnuocmsft_0-1724898784735.png

 

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.

 

vnuocmsft_1-1724898892705.png

 

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.

View solution in original post

Anonymous
Not applicable

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.

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

Hi @Anonymous 

 

For your question, here is the method I provided:

 

Here's some dummy data

 

“Table”

vnuocmsft_0-1724898784735.png

 

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.

 

vnuocmsft_1-1724898892705.png

 

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.

Anonymous
Not applicable

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.

Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

Find out what's new and trending in the Fabric community.

July PBI25 Carousel

Power BI Monthly Update - July 2025

Check out the July 2025 Power BI update to learn about new features.