Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]() Hi I have several sheets that contain the following data: eg column a has brk and column b has a town and column c has a value. Is there any way I can sum the total for column a and column b in a another sheet Thanks for any help/ -- david72 ------------------------------------------------------------------------ david72's Profile: http://www.excelforum.com/member.php...fo&userid=7980 View this thread: http://www.excelforum.com/showthread...hreadid=543614 |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]() How do you mean sum them in another sheet? Do you want column "A" totaled and column "B" totaled or do you want the total of column "A" PLUS total of Column "B"? david72 Wrote: Hi I have several sheets that contain the following data: eg column a has brk and column b has a town and column c has a value. Is there any way I can sum the total for column a and column b in a another sheet Thanks for any help/ -- bgeier ------------------------------------------------------------------------ bgeier's Profile: http://www.excelforum.com/member.php...o&userid=12822 View this thread: http://www.excelforum.com/showthread...hreadid=543614 |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]() If column a and column b are the same. I would like to sum the total of column c. Thanks -- david72 ------------------------------------------------------------------------ david72's Profile: http://www.excelforum.com/member.php...fo&userid=7980 View this thread: http://www.excelforum.com/showthread...hreadid=543614 |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]() I apologize, I missed the last clause of the first phrase in your post. (I claim temporary stupidity) Code: -------------------- Sub TotalC() Dim intRowCounter As Integer intRowCounter = 1 Do Until Cells(intRowCounter, 1) = "" If ThisWorkbook.Worksheets("Sheet1").Cells(intRowCoun ter, 1) = ThisWorkbook.Worksheets("Sheet1").Cells(intRowCoun ter, 2) Then _ ThisWorkbook.Worksheets("Sheet2").Cells(1, 1) = ThisWorkbook.Worksheets("Sheet2").Cells(1, 1) + ThisWorkbook.Worksheets("Sheet1").Cells(1, 3) intRowCounter = intRowCounter + 1 Loop End Sub -------------------- -- bgeier ------------------------------------------------------------------------ bgeier's Profile: http://www.excelforum.com/member.php...o&userid=12822 View this thread: http://www.excelforum.com/showthread...hreadid=543614 |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Drawing data from specific columns of a dynamic range | Setting up and Configuration of Excel | |||
MATCH UP DATA IN COLUMNS | Excel Worksheet Functions | |||
how do I lookup data based on two columns of data | Excel Worksheet Functions | |||
how to split data into columns and arrange the resulting data | Excel Discussion (Misc queries) | |||
How do i copy columns of data in notepad into microsoft excel? | Excel Discussion (Misc queries) |