Summation of first and last values of each cell of a selected range

Bamerand

Board Regular
Joined
Jan 11, 2013
Messages
62
I have a combination of value such as '1/3 in A1, '3/3 in A2 and '3/6 in A3. Is there a way to sum the that are 1+3+3 so that in the cell I would have 7 and the next cell 3+3+6 that would equal to 12? Basically, I need to sum the 1st values of the A1, A2 and A3 and in the other cell 2nd values of the same cells. Anybody has any clues?
 

Excel Facts

Copy formula down without changing references
If you have =SUM(F2:F49) in F50; type Alt+' in F51 to copy =SUM(F2:F49) to F51, leaving the formula in edit mode. Change SUM to COUNT.
How about something like...

Code:
=SUM(LEFT(A1)+LEFT(A2)+LEFT(A3))

...and...

Code:
=SUM(RIGHT(A1)+RIGHT(A2)+RIGHT(A3))

I hope this helps.
 
Upvote 0
Dear S.H.A.D.O,
The offered option works well, but only in a limited number of cells (5 x 5 table or anything about it), however, for me to specify each cell is burdensome with a table that dimensions are about 250 x 10000. Is there a way to calculate values value in one various cells? The format of the values are formatted such as “1/3”, “3/3” and “3/6”, so in the end the formula or function need to sum value preceding the slash sign and another function that sums the values succeeding the slash sign? For the three values I showed, for the first function should result in “1+3+3” so that in the cell the function would have summed to 7 and the next cell “3+3+6” that would equal to 12?
I look forward to hearing suggestions and offers.
 
Upvote 0

Forum statistics

Threads
1,214,428
Messages
6,119,420
Members
448,895
Latest member
omarahmed1

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top