Summing numbers with dashes across multiple pages.

Kurt706

New Member
Joined
Aug 9, 2010
Messages
7
I am trying to sum numbers with dashes across multiple sheets to sum quarterback passing totals. I am looking for a formula for sheet3 cell B1 to sum the numbers from sheet1 B1 and sheet2 B1.<?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:eek:ffice:eek:ffice" /><o:p></o:p>
<o:p></o:p>
Example:<o:p></o:p>
<o:p></o:p>
Sheet1<o:p></o:p>
Cell A1:<o:p></o:p>
Completions-Attempts-Int<o:p></o:p>
Cell B1:<o:p></o:p>
6-9-0<o:p></o:p>
<o:p></o:p>
Sheet2<o:p></o:p>
Cell A1:<o:p></o:p>
Completions-Attempts-Int<o:p></o:p>
Cell B1:<o:p></o:p>
5-10-1<o:p></o:p>
<o:p></o:p>
Sheet3<o:p></o:p>
Cell A1:<o:p></o:p>
Completions-Attempts-Int<o:p></o:p>
Cell B1:<o:p></o:p>
11-19-1 (need formula for this cell)<o:p></o:p>

<o:p></o:p>
<o:p>Thanks,<o:p></o:p>
Kurt<o:p></o:p>
</o:p>
 

Excel Facts

How to calculate loan payments in Excel?
Use the PMT function: =PMT(5%/12,60,-25000) is for a $25,000 loan, 5% annual interest, 60 month loan.
In order to do this easily, I suggest you parse the values. Place them in three adjacent cells. Do this using the Text to Columns function. Depending on what version of Excel you are using, the steps to locate will be slightly different, but should be on the Data Tab or Menu. Once you have the information parsed, then a simple sum function should work for you.

Alan
 
Upvote 0
There could be simpler solutions, but this is what I got -

Code:
=CONCATENATE(INT(LEFT(Sheet1!B1,FIND("-",Sheet1!B1,1)-1))+INT(LEFT(Sheet2!B1,FIND("-",Sheet2!B1,1)-1)),"-",INT(MID(Sheet1!B1,FIND("-",Sheet1!B1,1)+1,FIND("-",Sheet1!B1,FIND("-",Sheet1!B1,1)+1)-FIND("-",Sheet1!B1,1)-1))+INT(MID(Sheet2!B1,FIND("-",Sheet2!B1,1)+1,FIND("-",Sheet2!B1,FIND("-",Sheet2!B1,1)+1)-FIND("-",Sheet2!B1,1)-1)),"-",INT(RIGHT(Sheet1!B1,LEN(Sheet1!B1)-FIND("--",SUBSTITUTE(Sheet1!B1,"-","--",2),1)))+INT(RIGHT(Sheet2!B1,LEN(Sheet2!B1)-FIND("--",SUBSTITUTE(Sheet2!B1,"-","--",2),1))))
 
Upvote 0

Forum statistics

Threads
1,214,925
Messages
6,122,303
Members
449,078
Latest member
nonnakkong

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