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

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
Kate
New Member

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

Hi @Kate,

 

You can create a calculated column via this formula:

Col2 = IF(Table1[Col1]>0, "+"&Table1[Col1],FORMAT(Table1[Col1], ""))

1.PNG

 

Regards,

Yuliana Gu

Community Support Team _ Yuliana Gu
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

4 REPLIES 4
v-yulgu-msft
Microsoft Employee
Microsoft Employee

Hi @Kate,

 

It is not possible to add a plus sign to positive numbers. If you add such a plus sign, the data type of field will be converted to Text rather than numeric.

 

Regards,

Yuliana Gu

Community Support Team _ Yuliana Gu
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, 

 

any good ideas how to have this. I my case, with out the + sign, the figures look like % of of instead of % growth when shown with the + sign before

 

Sven

Thank you! I just wanted to make such  a column for my visualization, in which the type of data wouldn't matter.

Hi @Kate,

 

You can create a calculated column via this formula:

Col2 = IF(Table1[Col1]>0, "+"&Table1[Col1],FORMAT(Table1[Col1], ""))

1.PNG

 

Regards,

Yuliana Gu

Community Support Team _ Yuliana Gu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

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

August 2025 community update carousel

Fabric Community Update - August 2025

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

Top Solution Authors