ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Discussion (Misc queries) (https://www.excelbanter.com/excel-discussion-misc-queries/)
-   -   Need VBA to move totals from one page to another (https://www.excelbanter.com/excel-discussion-misc-queries/73234-need-vba-move-totals-one-page-another.html)

Tina Bradshaw

Need VBA to move totals from one page to another
 
I need to be able to move totals from page two in my workbook to page one.
But if the cell in page one is already populated, I need VB to detect that
and then move the total down on cell in the same column.

How do i do that?

bigwheel

Need VBA to move totals from one page to another
 
Hi Tina

Presumably, this is one of your first attempts to get a macro to do
something. Have you tried recording a new macro to "cut and paste" the cell
from sheet2 to sheet1?

Selection.Cut
Sheets("Sheet1").Select
Range("A1").Select
ActiveSheet.Paste

"Tina Bradshaw" wrote:

I need to be able to move totals from page two in my workbook to page one.
But if the cell in page one is already populated, I need VB to detect that
and then move the total down on cell in the same column.

How do i do that?


Tina Bradshaw

Need VBA to move totals from one page to another
 
I know about the recording - guess I should have been more specific. I am
having problems getting it to move the totals if the orignal cell is already
populated.

"bigwheel" wrote:

Hi Tina

Presumably, this is one of your first attempts to get a macro to do
something. Have you tried recording a new macro to "cut and paste" the cell
from sheet2 to sheet1?

Selection.Cut
Sheets("Sheet1").Select
Range("A1").Select
ActiveSheet.Paste

"Tina Bradshaw" wrote:

I need to be able to move totals from page two in my workbook to page one.
But if the cell in page one is already populated, I need VB to detect that
and then move the total down on cell in the same column.

How do i do that?


bigwheel

Need VBA to move totals from one page to another
 
In that case you could modify the recorded macro, in the case of the sample
add these lines at the end

If Range("A1") "" Then ' cell has data in it
Range("A2").Select ' select next cell
ActiveSheet.Paste
End If

"Tina Bradshaw" wrote:

I know about the recording - guess I should have been more specific. I am
having problems getting it to move the totals if the orignal cell is already
populated.

"bigwheel" wrote:

Hi Tina

Presumably, this is one of your first attempts to get a macro to do
something. Have you tried recording a new macro to "cut and paste" the cell
from sheet2 to sheet1?

Selection.Cut
Sheets("Sheet1").Select
Range("A1").Select
ActiveSheet.Paste

"Tina Bradshaw" wrote:

I need to be able to move totals from page two in my workbook to page one.
But if the cell in page one is already populated, I need VB to detect that
and then move the total down on cell in the same column.

How do i do that?



All times are GMT +1. The time now is 11:13 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com