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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
AtulsDream
Frequent Visitor

How to setup decimal points dynamically for same column

Hello Everyone,

 

I am creating Power BI reports, which have multiple columns.

first dimension column having fields, and other fact columns generating the data for that selected dimension rows.

Please find below image for reference.

Screenshot 2023-12-14 144048.png

 

 

 

The issue is, Need to setup the decimal values dynamically after interger. 

For Example: Value column will have 0 decimal for first 2 rows and 1 decimal for next 4 rows and 2 decimal for last row.

 

Please help.

 

Thanks.

1 ACCEPTED SOLUTION

Hello,

 

I have resolved the issue, I have created measures for all indivisual columns and applied the formatting to each row.

Example: 

10th = SWITCH(
    TRUE(),
    MAX(Table1[DESC_COLUMN]) = "Observed", FORMAT(MAX(Table1[PERCENTILE_Column]),"#,0.0"),
    ----- Same for all Rows -----,
   FORMAT(MAX(Table1[PERCENTILE_Column]), "#,0")
    )
 
It resolves the issue.
Thanks

View solution in original post

2 REPLIES 2
danextian
Super User
Super User

Hi @AtulsDream 

 

Please try using dynamic format strings:

https://learn.microsoft.com/en-us/power-bi/create-reports/desktop-dynamic-format-strings 





Dane Belarmino | Microsoft MVP | Proud to be a Super User!

Did I answer your question? Mark my post as a solution!


"Tell me and I’ll forget; show me and I may remember; involve me and I’ll understand."
Need Power BI consultation, get in touch with me on LinkedIn or hire me on UpWork.
Learn with me on YouTube @DAXJutsu or follow my page on Facebook @DAXJutsuPBI.

Hello,

 

I have resolved the issue, I have created measures for all indivisual columns and applied the formatting to each row.

Example: 

10th = SWITCH(
    TRUE(),
    MAX(Table1[DESC_COLUMN]) = "Observed", FORMAT(MAX(Table1[PERCENTILE_Column]),"#,0.0"),
    ----- Same for all Rows -----,
   FORMAT(MAX(Table1[PERCENTILE_Column]), "#,0")
    )
 
It resolves the issue.
Thanks

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

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

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors
Top Kudoed Authors