Jul 27, 2023 01:59 AM
Hi all !
I've a concatenation formula wich works fine with all number but the 7%...
That's crazy.... When I put 7% somewhere my formula return 7.0000000000001%...
My fields are all in percent (precision 1%) but the concatenation field is in text format.
There's nothing in my formula about the number 7 or else that could launch this error...
Any idea ? >Thanks !
Solved! Go to Solution.
Jul 27, 2023 03:13 AM
Might want to try using "ROUND()" to solve this
Jul 27, 2023 03:13 AM
Jul 27, 2023 03:14 AM
Hi @Nocode34130 ,
Numeric fields store more precise values apart from the format.
When calculating numeric values or treating them as strings, the number of significant digits must be specified.
The following functions may be used
FLOOR()
ROUND()
ROUNDUP()
ROUNDDOWN()
Formula Field Reference - Overview | Airtable Support