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! Learn more

Reply
Anonymous
Not applicable

How can I remove leading zeroes from the data labels?

Hello! I'd like to show this calculated measure in the data labels in the format '.XX' (i.e. '.76' as opposed to '0.76') if <1 and just '1' if =1. Basically removing non-significant zeroes. I tried using RIGHT, then converting back to a Decimal number but got a bad output. Thanks!

beemunni_0-1659975825443.png

 

1 ACCEPTED SOLUTION
YalanWu_test
Helper I
Helper I

Hi, @Anonymous ;

You could create measure.

Measure = IF(MAX('Table'[value])<1, MAX('Table'[value]))
Measure2 = IF(MAX('Table'[value])>=1 ,MAX('Table'[value]))

and change the measure format.

YalanWu_test_1-1660204127099.png

Then create a feild parameter.

YalanWu_test_2-1660204181596.png

 

The final show:

YalanWu_test_4-1660204236994.png

Best Regards,

 

View solution in original post

3 REPLIES 3
YalanWu_test
Helper I
Helper I

Hi, @Anonymous ;

You could create measure.

Measure = IF(MAX('Table'[value])<1, MAX('Table'[value]))
Measure2 = IF(MAX('Table'[value])>=1 ,MAX('Table'[value]))

and change the measure format.

YalanWu_test_1-1660204127099.png

Then create a feild parameter.

YalanWu_test_2-1660204181596.png

 

The final show:

YalanWu_test_4-1660204236994.png

Best Regards,

 

speedramps
Super User
Super User

Try this

FORMAT(tablename[fieldname],"#.##")
 
 

Thanks for reaching out for help.

I put in a lot of effort to help you, now please quickly help me by giving kudos.

Remeber we are unpaid volunteers and here to coach you with Power BI and DAX skills and techniques, not do the users job for them. So please click the thumbs up and accept as solution button. 

If you give someone a fish then you only give them one meal, but if you teach them how to fish then they can feed themselves and teach others for a lifetime.  I prefer to teach members on this forum techniques rather give full solutions and do their job. You can then adapt the technique for your solution, learn some DAX skills for next time and soon become a Power BI Super User like me. 

 

One question per ticket please. If you need to extend your request then please raise a new ticket.

You will get a quicker response and each volunteer solver will get the kudos they deserve. Thank you ! 

 
 
 

 

 

Anonymous
Not applicable

That gave me the error, "Error Message:
Query (39, 5) The SampleAxisWithLocalMinMax function requires Measure parameter (at argument number 5) to be a numeric column reference from the specified table." The line graph Can't Display because that function converts to text.

 

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