Help

Re: Bug with the concatenation of percent

Solved
Jump to Solution
905 0
cancel
Showing results for 
Search instead for 
Did you mean: 
Nocode34130
5 - Automation Enthusiast
5 - Automation Enthusiast

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 !

1 Solution

Accepted Solutions
TheTimeSavingCo
18 - Pluto
18 - Pluto

Might want to try using "ROUND()" to solve this

See Solution in Thread

2 Replies 2
TheTimeSavingCo
18 - Pluto
18 - Pluto

Might want to try using "ROUND()" to solve this

Sho
11 - Venus
11 - Venus

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