Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
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? |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
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? |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
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? |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
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? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
HOW DO I MOVE ONE ROW TO ANOTHER PAGE USING A FORMULA. | Excel Worksheet Functions | |||
save spreadsheet as web page | Excel Discussion (Misc queries) | |||
Move page breaks | Excel Discussion (Misc queries) | |||
lower horizontal page break will not move | Excel Discussion (Misc queries) | |||
excel 2003 page numbering | Excel Worksheet Functions |