Forum Discussion
Haytham Amairah
Feb 05, 2017Silver Contributor
How to add separator (comma) inside a formula?
How to separate the value of SUM by comma in this case?
- Feb 06, 2017
Haytham, format the SUM as well, like ="Total: " & TEXT(SUM(D3:D12),"#,##0_ ;-#,##0 "). If I understood your question correctly...
SergeiBaklan
Feb 06, 2017Diamond Contributor
Haytham, format the SUM as well, like ="Total: " & TEXT(SUM(D3:D12),"#,##0_ ;-#,##0 "). If I understood your question correctly...
Haytham Amairah
Feb 06, 2017Silver Contributor
Thank you Mr. Baklan, this is exactly what I want :smileyvery-happy:
But I have noticed another code gives the same result.
The code is: #,##0
What's the difference between it and the code you mentioned?