Hi!
I am probably coming at this all wrong, but am trying to combine a three digit number with a string of text but when I tried a simple addition formula any trailing zeros in the number were lost. I attempted to use a LEFT function to preserve the zeros by indicating the number of digits present, but that still resulted in all trailing zeros being lost.
Example: the cell with a number added is formatted as 9.00 in a column titled ABV (%)
When put in a formula like this (=[ABV (%)]@row+"% ALC/VOL") the resulting text reads 9% ALC/VOL
When using the LEFT function it looks like this (=LEFT([ABV (%)]@row, 4) + "% ALC/VOL") the resulting text reads 9% ALC/VOL
What I want the resulting text to read is: 9.00% ALC/VOL
So ultimately, the same result. I feel like this is a simple issue with a simple answer, but my googling skills are off today.