Adding numerator and denominator in same cell

dsacomano

New Member
Joined
Jul 17, 2019
Messages
5
Not sure if this is possible, but I am looking to add both the numerator and denominators and total them in a final cell. It is to track individual phone calls answered vs total phone calls received from a call center.

Example.

B2- 74/326 (74 answered, 326 total calls)
C2- 55/245
D2- 81/195

I am hoping to add these so that E2 will show 210/766.

Any help would be greatly appreciated. Thanks.
 

Excel Facts

Shade all formula cells
To shade all formula cells: Home, Find & Select, Formulas to select all formulas. Then apply a light fill color.
Hi & welcome to MrExcel.
How about


Book1
BCDE
274/32655/24581/195210/766
Request
Cell Formulas
RangeFormula
E2{=SUM(--LEFT(B2:D2,FIND("/",B2:D2)-1))&"/"&SUM(--MID(B2:D2,FIND("/",B2:D2)+1,100))}
Press CTRL+SHIFT+ENTER to enter array formulas.
 
Upvote 0
When I use Ctrl+Shift+Enter to enter this formula, it doesn't give me the brackets. I have tried copying and pasting and typing the formula manually.
 
Upvote 0
Enter the formula without the {} & whilst in Edit mode hit Ctrl Shift Enter
 
Upvote 0
Hi & welcome to MrExcel.
How about


Book1
BCDE
274/32655/24581/195210/766
Request
Cell Formulas
RangeFormula
E2{=SUM(--LEFT(B2:D2,FIND("/",B2:D2)-1))&"/"&SUM(--MID(B2:D2,FIND("/",B2:D2)+1,100))}
Press CTRL+SHIFT+ENTER to enter array formulas.
For those uncomfortable with array-entered formulas, you can turn Fluff's array-entered formula into a normally-entered formula by using SUMPRODUCT instead of SUM function calls...

=SUMPRODUCT(--LEFT(B2:D2,FIND("/",B2:D2)-1))&"/"&SUMPRODUCT(--MID(B2:D2,FIND("/",B2:D2)+1,100))
 
Last edited:
Upvote 0
Excellent point Rick.
Thanks for that.
 
Upvote 0

Forum statistics

Threads
1,214,606
Messages
6,120,479
Members
448,967
Latest member
visheshkotha

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