Forum Discussion
BillCPA
Sep 15, 2022Copper Contributor
Joining Text and Formatted Number
I am using the formula CONCAT("Total Cost ",ROUND(SUM(A2:A50),0)) in a cell to get the result Total Cost 123456 (where SUM(A2:A50) is equal to 123456). Is there some way to format the number to 123,...
- Sep 15, 2022
BillCPA Yes, use CONCAT("Total Cost ",Text(ROUND(SUM(A2:A50),0),"#,000"))
DexterG_III
Sep 15, 2022Iron Contributor
BillCPA Yes, use CONCAT("Total Cost ",Text(ROUND(SUM(A2:A50),0),"#,000"))
BillCPA
Sep 15, 2022Copper Contributor
DexterG_III - thank you - looks good.
- DexterG_IIISep 15, 2022Iron Contributor
- BillCPASep 15, 2022Copper ContributorThis is my first time here - did I mark correctly?
- DexterG_IIISep 15, 2022Iron Contributor
BillCPA yes, perfect & thank you.