The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
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
Solved! Go to Solution.
Hi @Kate,
You can create a calculated column via this formula:
Col2 = IF(Table1[Col1]>0, "+"&Table1[Col1],FORMAT(Table1[Col1], ""))
Regards,
Yuliana Gu
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
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], ""))
Regards,
Yuliana Gu