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

Be one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now

Reply
ZhangKun
Resolver V
Resolver V

Custom number format strings

In the documentation for custom numeric format strings:

ZhangKun_0-1735489310956.png

However, in actual testing, it was found that the following expression would produce an unexpected result:

 

// 0%
Number.ToText(0.4, "0;-0;0%")

// 0.4
Number.ToText(0.4, "0.0;-0;0%")

 

So, is this a bug?

1 ACCEPTED SOLUTION

Sorry, missed that and learned something.

What do you expect for output given those format strings.

 

The second one appears correct. What would you expect for your first format string?

 

The behavior you see is documented in the link you provided:

 

If the number to be formatted is nonzero, but becomes zero after rounding according to the format in the first or second section, the resulting zero is formatted according to the third section.

View solution in original post

4 REPLIES 4
watkinnc
Super User
Super User

Your results look correct to me as well. in the first case you were saying if it's positive, make it a whole number, which rounds down to zero, and since your third argument says if zero make a percent, you, get 0%. in your second example you say if the number is positive make it one decimal therefore you get 0.4 which does not equal zero and therefore does not become a percent.

 

--Nate


I’m usually answering from my phone, which means the results are visualized only in my mind. You’ll need to use my answer to know that it works—but it will work!!
ronrsnfld
Super User
Super User

deleted as incorrect

Sorry, missed that and learned something.

What do you expect for output given those format strings.

 

The second one appears correct. What would you expect for your first format string?

 

The behavior you see is documented in the link you provided:

 

If the number to be formatted is nonzero, but becomes zero after rounding according to the format in the first or second section, the resulting zero is formatted according to the third section.

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

ArunFabCon

Microsoft Fabric Community Conference 2025

Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.

December 2024

A Year in Review - December 2024

Find out what content was popular in the Fabric community during 2024.

Top Solution Authors