Is it possible to add a comma to a number inside a concatenate formula?

I’d like to add a comma to a number value that I’m displaying in a detail w/ card view.

3X_a_8_a8ef7c162a96d44ae18b0e3c13936dfe5e18364e.png

Any easy way to add a comma to the number after it says production deficit?

Solved Solved
0 2 543
1 ACCEPTED SOLUTION

Please try wrapping the number column that denotes the energy quantity with TEXT()

CONCATENATE("Production Deficit: ", TEXT([Energy Value]) ,“KWh”)

[Energy Value] is assumed to be a number type column.

View solution in original post

2 REPLIES 2

Please try wrapping the number column that denotes the energy quantity with TEXT()

CONCATENATE("Production Deficit: ", TEXT([Energy Value]) ,“KWh”)

[Energy Value] is assumed to be a number type column.

Easy, thanks!

Top Labels in this Space