Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi,
I am trying to set up a macro to fill up formulas two rows below the last row of a worksheet. The problem is this number of rows is different each week. I have a hard time making this macro works for different week. Thanks. Below is the code: Sub Macro13() ' ActiveCell.FormulaR1C1 = "Total" Range("M204").Select ActiveWindow.SmallScoll Down:=12 Range("M199").Select Selection.Copy Range("M204").Select ActiveSheet.Paste Application.CutCopyMode = False ActiveCell.FormulaR1C1 = "=SUM(RC[1])-SUM(RC[2])" Range("M205").Select ActiveWindow.SmallScroll ToRight:=1 Range("N204").Select ActiveCell.FormulaR1C1 = "=+R[-2]C/R[-203]C" Range("N204").Select Selection.AutoFill Destination:=Range("N204:S204"), Type:=xlFillDefault Range("N204:S204").Select Selection.NumberFormat = "#,##0.0_);[Red](#,##0.0)" Selection.Font.Bold = True ActiveSheet.Outline.ShowLevels RowLevels:=2 Range("M204").Select End Sub |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Macro recorded... tabs & file names changed, macro hangs | Excel Worksheet Functions | |||
Macro Help Needed - Excel 2007 - Print Macro with Auto Sort | Excel Worksheet Functions | |||
how to count/sum by function/macro to get the number of record to do copy/paste in macro | Excel Programming | |||
macro to delete entire rows when column A is blank ...a quick macro | Excel Programming | |||
Start Macro / Stop Macro / Restart Macro | Excel Programming |