How to convert number to text in excel formula?

3 answer(s)
Answer # 1 #

For more complex formats, you can use: =TEXT(A1,"₹#,##0.00") to convert a number into currency format as text.

[2 Month]
Answer # 2 #

Alternatively, use &"" trick: =A1&"" to convert a number into text quickly.

[2 Month]
Answer # 3 #

Use the TEXT function: =TEXT(1234,"0") converts the number 1234 into text “1234”.

[3 Month]