Help

This Product Ideas board is currently undergoing updates, but please continue to submit your ideas.

Custom number format

cancel
Showing results forย 
Search instead forย 
Did you mean:ย 
Luka_Kaspar
5 - Automation Enthusiast
5 - Automation Enthusiast

A useful feature for plain number entries would in my opinion be custom number formats.

For example I have entries like 0052 and the Number field type will delete the zeros.

Thanks for the consideration :slightly_smiling_face:

PS fantastic product you have going here!

9 Comments
Katherine_Duh
10 - Mercury
10 - Mercury

Thanks for the feedback! Iโ€™ll pass it onto the rest of the team. In the meantime, the single-line text field is probably your best bet to preserve your formatting.

Luka_Kaspar
5 - Automation Enthusiast
5 - Automation Enthusiast

Indeed, thatโ€™s what Iโ€™ve been using, since my use case doesnโ€™t require more at this point :slightly_smiling_face:

And thanks for the quick response.

Anthony_Alonzo
4 - Data Explorer
4 - Data Explorer

Hi just a suggestion try using this REPT(โ€œ0โ€, 4 - LEN("" & RecID))) & RecID where Recid is the numeric field you wish to format and the number 4 is the number of leading zeros you wish to have.

Chris_Mondeau
5 - Automation Enthusiast
5 - Automation Enthusiast

Great solution! I had to adapt mine to the autonumber and use the concat function to force it a text.

REPT(โ€œ0โ€,4-LEN(CONCATENATE(GUID,"")))&GUID

Kamille_Parks
16 - Uranus
16 - Uranus

Please add number formatting to Autonumbers! I know there are workarounds for things like leading zeros, as demonstrated by @Chris_Mondeau, but these solutions will always require an extra field/column.

I canโ€™t imagine this would be any different than the precision dropdown for Currency, Percentage, and Number Field Types to control minimum digit length of an autonumber (to achieve leading zeros).

In the same vain of leading zeros, it would be nice for Autonumbers to have prefix and suffix text (implemented just like the currency symbol box for the Currency Field Type). Yes, you can accomplish this with a separate formula field, but why force users to write formulas for something so simple?

Baden_Appleyard
4 - Data Explorer
4 - Data Explorer

Iโ€™m starting to become quite concerned that Airtable is just not listening to the community that is wrapped around it that loves it. None of their suggestions (which are excellent) that I have seen are being implemented. For example, this is now almost 4 years old and as Kamille said,

โ€œYes, you can accomplish this with a separate formula field, but why force users to write formulas for something so simple?โ€

This is one of many I have found when Im searching for a solution to a problem that others have found before me. I am recommending Airtable to other new and potential users and am frequently embarrassed when they get to the same point that I do and say 'but why cant it just do x".

Happy to take this off line for discussion but can you tell me what the process is inside Airtable for considering and developing community suggestions for product improvements? I trust there is something more than โ€œIโ€™ll pass it onโ€. The Airtable community and their input should be as important to Airtable as it is promoted to be.

Wes_Webber
4 - Data Explorer
4 - Data Explorer

This seems so basic I cant believe this is not yet possible. We need to be able to format numbers with comma separators for thousands. This shouldnโ€™t be a hard endeavor.

Markus_Wernig
8 - Airtable Astronomer
8 - Airtable Astronomer

I fully agree with the number of frustrated users - itโ€™s standard in spreadsheet apps to have a custom format option for โ€œallowing numbers to lead with 0โ€.

While there sure is the โ€œtext field workaroundโ€, hereโ€™s where this approach makes things more complicated than necessary:

The moment you include these โ€œtext numbersโ€ in a formula, you also have to format them as text by adding โ€™ โ€™ around them. Seems so unnecessary since the Formula field already has a formatting tab for numbersโ€ฆ
Frustrating!

Please do add more standard formatting options for numbers!

Karl_at_Easy_La
6 - Interface Innovator
6 - Interface Innovator

While the REPT(โ€œ0โ€,4-LEN(CONCATENATE(GUID,"")))&GUID solution works, I find absurd that one has to resort to such long-winded formulas to format a number.  It would be great if Airtable could implement a function like TEXT() in google sheets