cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
Kate
New Member

Need help! How to add a plus sign before positive numbers?

Adding a plus sign to positive numbers

 

 

Hi!

Is it somehow possible to automatically add a plus sign to the data in a table, which contains both positive and negative numbers, and retain the format (percentage)? 

 

Thanks

1 ACCEPTED SOLUTION
JoHo_BI
Responsive Resident
Responsive Resident

Go for this: 

Column =

var num = ROUND(Table[Column],2)

RETURN IF(num > 0, "+"&num&"%", num&"%"

 

View solution in original post

18 REPLIES 18
JoHo_BI
Responsive Resident
Responsive Resident

Hi @Kate

 

Column = "+"&ROUNDDOWN(Table[Column],2)

 

Hope that helps!

It worked - the plus signs are now here. But the format is different - it's text now, and the percentage signs are missing 😞


Screenshot_1.png



Moreover, it added + to negative numbers as well 

Screenshot_2.png

 

JoHo_BI
Responsive Resident
Responsive Resident

Yes, unfortunate consequence...

 

I'd change it to:

Column = "+"&ROUND(Table[Column],2)&"%"

 

As far as I know that's the only way to get the plus sign in the column, so it'll always be treated like text! I'd just use this as a display column and do all the calculations in the background on another column. 

Thank you!

Is there any way not to add plus to negative numbers?

JoHo_BI
Responsive Resident
Responsive Resident

Go for this: 

Column =

var num = ROUND(Table[Column],2)

RETURN IF(num > 0, "+"&num&"%", num&"%"

 

Thank you!!!! You're my saviour! It worked!

Hi,

this solution works fine but if I would like to use conditional formatting it works just for number type 😞

 

Any other idea?

 

Many Thanks

 

D.

 

JoHo_BI
Responsive Resident
Responsive Resident

Unfortunately as previously stated, since you're adding text characters to the number it'll automatically treat it as text. 

 

The only workaround off the top of my head will be to have a column that jsut returns +/-, then make it so small it's essentially next to the number column. This won't give you conditional formatting for the +/- column however. 

Anonymous
Not applicable

Hi, you can actually do this - at least in more recent versions of PowerBI - in a way that still allows for conditional formatting. You need to go to the relationships view, select the field you want to format as a percentage with positive and negative signs, and then in the "properties" pane, choose a custom format and enter "+#%;-#%;0%"

 

h34HzBG

 

 

Great solution - thanks!

brillaint!

You can also place the FORMAT() in DAX.

Measure = FORMAT( Table[Column] , "+#%;-#%;0%")

I agree that this is the best answer. However, it will, weirdly, show just "+" or "-" (rather than "-0" or "+0") for values between -0.5 and +0.5 that arent exactly 0, if you want no decimal points.

Anonymous
Not applicable

This solution is great!

However, when I apply it i do not have any decimals. Has anybody an idea how to show decimals?

Thanks!!

 

Yeah, you can use +0.00%;-0.00%;0.00%

this is the perfect way to do it, thanks!

Anonymous
Not applicable

This is THE Perfect Answer for this case. It doesn't convert the values into string, it still remains numeric even after converting them.

Kate
New Member

Hi!

Is it somehow possible to automatically add a plus sign to the data in a table, which contains both positive and negative numbers, and retain the format (percentage)? 

 

Thanks

Helpful resources

Announcements
PBI Sept Update Carousel

Power BI September 2023 Update

Take a look at the September 2023 Power BI update to learn more.

Learn Live

Learn Live: Event Series

Join Microsoft Reactor and learn from developers.

Dashboard in a day with date

Exclusive opportunity for Women!

Join us for a free, hands-on Microsoft workshop led by women trainers for women where you will learn how to build a Dashboard in a Day!

Top Solution Authors