I have a list of data in the following format:
1,6
10,66
13,13
I would like to divide the sum the values on the left of the comma and the sum of the values on the right of the comma.
EX. (1+10+13)/(6+66+13) = 24/85 = .2823
This formula will pull off the value on the left side of the comma in cell A1:
=LEFT(A1,FIND(",",A1)-1))
but I'm not sure how to use this formula to sume a range.
Thanks,
Bookmarks