Using a literal 0 in NumberFormat

I’m attempting to use a Spinner component with the NumberFormat property. When I make the value some combination of regular format and literals (like “## radians”), it works as expected, populating the word “radians” after my number.

However, I have an instance where I want to use the number 0 in my format (“/100” as the label). I can successfully use other numbers (“/7” works), but the result treats the zeros as part of the code of the format, signifying required digits.

Is there a way to include the literal zero in the format, or do I just need to cut my losses and stick a label outside the component?

Usually, you can force digits by replacing # with 0

EDIT: I misread your question, you meant on the /100 part.

Does ###/1'00' work? Maybe ###'/100' would be better(More clearly indicates its a label/suffix).

3 Likes

I had tried this with double quotes without success. The single quotes seem to work better. Thank you!