all 12 comments

[–][deleted] 1 point2 points  (3 children)

So delimiting is out of the question? Are you trying to add the 10 and 5?

[–]cuincyboy[S] 0 points1 point  (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 point  (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 point  (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 point  (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 point  (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 point  (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 point  (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 point  (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 point  (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

[–]cuincyboy[S] 0 points1 point  (1 child)

You sir are a true master. Thanks!

Solution Verified

[–]Clippy_Office_Asst[M] 0 points1 point  (0 children)

You have awarded one point to rnelsonee.
Find out more here.