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
Need more help? 👀 | Help and Learning Center
こんにちは (Konnichiwa), Hallo, Hola, Bonjour, Olá, Ciao! 👋 | Global Discussions
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
Need more help? 👀 | Help and Learning Center
こんにちは (Konnichiwa), Hallo, Hola, Bonjour, Olá, Ciao! 👋 | Global Discussions
-
That will work, thanks Genevieve!
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 64.4K Get Help
- 424 Global Discussions
- 221 Industry Talk
- 465 Announcements
- 4.8K Ideas & Feature Requests
- 143 Brandfolder
- 144 Just for fun
- 61 Community Job Board
- 463 Show & Tell
- 32 Member Spotlight
- 1 SmartStories
- 300 Events
- 39 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!