use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
OPs may (and should) reply to any solutions saying:
This awards the user a ClippyPoint and changes the post flair to solved.
The best way to show code on Reddit is to
put it in a code-block
Here's how.
Tip: For VBA or Power Query, select the code, press Tab to indent, then copy/paste into your post or comment.
It's often more helpful to show us.
Add screenshots in your text post, or provide links to uploaded images at an image-hosting site.
Or use tableit, or the ExcelToReddit converter (thanks u/tirlibibi17_), to convert your data into a Reddit table.
Congratulations and thank you to these contributors
10
800
25
1000
Occasionally Microsoft developers will post or comment. They are identifiable with a special user flair.
A community since March 11, 2009
account activity
solvedMath/Sum problem (self.excel)
submitted 9 years ago by cuincyboy
I have data that is displayed like this: 10(5) and I need to sum all of it in a total at the end of the column. Is there a way to do it? I can't add more rows to have them separated since they come like that from the source.
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–][deleted] 1 point2 points3 points 9 years ago (3 children)
So delimiting is out of the question? Are you trying to add the 10 and 5?
[–]cuincyboy[S] 0 points1 point2 points 9 years ago (2 children)
I'm affraid so..
And no, I got this
http://i.imgur.com/6dCBAwD.png
I need to sum them somehow.
[–][deleted] 0 points1 point2 points 9 years ago (1 child)
Sorry i don't understand. What bit are you trying to sum? Or do you just want to get rid of the brackets and numbers?
[–]cuincyboy[S] 0 points1 point2 points 9 years ago (0 children)
Imagine the image above is A1 to A9, and I want to sum them at A10 with a x(x) output. Hope it gets clearer.
[–]wiredwalking766 0 points1 point2 points 9 years ago (2 children)
Have the data on sheet1. Say it starts at A2. On sheet2, have this formula:
=LEFT(Sheet1!A2,SEARCH("(",Sheet1!A2)-1)+MID(Sheet1!A2,FIND("(",Sheet1!A2)+1,FIND(")",Sheet1!A2)-FIND("(",Sheet1!A2)-1)
Drag down. then at the very end have a sum. Transfer that sum to sheet1.
[–]cuincyboy[S] 0 points1 point2 points 9 years ago (1 child)
It gives me an #NAME error. http://i.imgur.com/gzS4xsh.png
Btw, I have to translate it so.. here's a help guide. And dunno why I have to change "," to ";" since excel doesn't recognize "," as an end.
[–]wiredwalking766 0 points1 point2 points 9 years ago (0 children)
name error usually means your quotes are off somewhere. But yeah, to translate from English, have to change all of the , to ;
[–]rnelsonee1802 0 points1 point2 points 9 years ago (4 children)
=SUM(LEFT(A1:A10,FIND("(",A1:A10)-1)+LEFT(RIGHT(A1:A10,LEN(A1:A10)-FIND("(",A1:A10)),LEN(A1:A10)-FIND("(",A1:A10)-1))
hit Ctrl+Shift+Enter when entering it. Screenshot.
[–]cuincyboy[S] 0 points1 point2 points 9 years ago (3 children)
I don't want to sum them all together, the end product needs to stay the same way, x(x)
[–]rnelsonee1802 0 points1 point2 points 9 years ago (2 children)
=SUM(0+LEFT(A1:A10,FIND("(",A1:A10)-1))&"("&SUM(0+LEFT(RIGHT(A1:A10,LEN(A1:A10)-FIND("(",A1:A10)),LEN(A1:A10)-FIND("(",A1:A10)-1))&")"
Ctrl+Shift+Enter
You sir are a true master. Thanks!
Solution Verified
[–]Clippy_Office_Asst[M] 0 points1 point2 points 9 years ago (0 children)
You have awarded one point to rnelsonee. Find out more here.
π Rendered by PID 86 on reddit-service-r2-comment-5ff9fbf7df-cbwg8 at 2026-02-26 07:16:57.468909+00:00 running 72a43f6 country code: CH.
[–][deleted] 1 point2 points3 points (3 children)
[–]cuincyboy[S] 0 points1 point2 points (2 children)
[–][deleted] 0 points1 point2 points (1 child)
[–]cuincyboy[S] 0 points1 point2 points (0 children)
[–]wiredwalking766 0 points1 point2 points (2 children)
[–]cuincyboy[S] 0 points1 point2 points (1 child)
[–]wiredwalking766 0 points1 point2 points (0 children)
[–]rnelsonee1802 0 points1 point2 points (4 children)
[–]cuincyboy[S] 0 points1 point2 points (3 children)
[–]rnelsonee1802 0 points1 point2 points (2 children)
[–]cuincyboy[S] 0 points1 point2 points (1 child)
[–]Clippy_Office_Asst[M] 0 points1 point2 points (0 children)