Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hi Experts
In the model and Properties pane how - what could i add to show my percentages as (23).
Solved! Go to Solution.
Hi @Anonymous ,
According to your description, here’s my solution.
1.Create a new calculate column.
Column2 = FORMAT('Table'[Column1],"#,##0;(#,##0)")
2.Conditional formatting for column2 like Tahreem24 mentioned.
Put column2 in a visual, select Format--Conditional formatting--front color, and apply the color rule with the value of column1.
3.Get the expected result.
Best Regards,
Community Support Team _ kalyj
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Anonymous ,
According to your description, here’s my solution.
1.Create a new calculate column.
Column2 = FORMAT('Table'[Column1],"#,##0;(#,##0)")
2.Conditional formatting for column2 like Tahreem24 mentioned.
Put column2 in a visual, select Format--Conditional formatting--front color, and apply the color rule with the value of column1.
3.Get the expected result.
Best Regards,
Community Support Team _ kalyj
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
@Anonymous Try this out:
Step1 : Select your numeric column in my case I called it "Profit". Go to Column Tool menu and Select "$" sign like below:
Step 2: It will appear in a table like below:
Step3: Go to Table property field under Visualization pane >> Click on small down arrow of Profit column >> Conditional Formatting >> Font Color
Step 4: Do the below setting
Step 5: Then you'll see the required output.
@Anonymous , Refer