How to adjust numeric format when combining cells
Greetings, Community!
I am attempting to concatenate three cells containing numbers and retain the decimal places and 'thousands' comma separator. I've searched high and low for an existing solution, but not finding anything.
Here's a snip of what it looks like. The '121410' is coming from the sheet grid; the other figures are coming from the sheet summary:
This is the formula I'm using: =[2100 Average Monthly Usage - SF]# + ", " + [OCT 22]2 + ", (" + [2100 Average Monthly Utilization]# * 100 + "%)"
This is how I would like it to appear: "70,865, 121,410, (58%)"
Any ideas?
Thanks!
Best Answer
-
You could use the ROUND Function to get rid of the decimals:
=ROUND([2100 Average Monthly Usage - SF]#, 0) + ", " + [OCT 22]2 + ", (" + ROUND([2100 Average Monthly Utilization]#, 0)* 100 + "%)"
However since you're translating the numbers into a text string (with the + and quotes) then there isn't a way to easily insert commas in the correct places to indicate thousand separators.
Cheers,
Genevieve
Join us at Smartsheet ENGAGE 2024 🎉
October 8 - 10, Seattle, WA | Register now
Answers
-
You could use the ROUND Function to get rid of the decimals:
=ROUND([2100 Average Monthly Usage - SF]#, 0) + ", " + [OCT 22]2 + ", (" + ROUND([2100 Average Monthly Utilization]#, 0)* 100 + "%)"
However since you're translating the numbers into a text string (with the + and quotes) then there isn't a way to easily insert commas in the correct places to indicate thousand separators.
Cheers,
Genevieve
Join us at Smartsheet ENGAGE 2024 🎉
October 8 - 10, Seattle, WA | Register now -
That will work, thanks Genevieve!
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 62.1K Get Help
- 348 Global Discussions
- 199 Industry Talk
- 427 Announcements
- 4.4K Ideas & Feature Requests
- 133 Brandfolder
- 127 Just for fun
- 127 Community Job Board
- 455 Show & Tell
- 28 Member Spotlight
- 1 SmartStories
- 282 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!