Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I am creating an excel spreadsheet the produces various financial reports for
a client. I have attached the following code to a control button. When clicked the macro does the following: 1) Goes to a report sheet; 2) Hides certain columns in the sheet (the sheet contains many columns of data which are only shown depending on the report the client wants to run) 3) Unhides only those columns that are relevant for the report the client is running i.e. Month To Date and Year to Date information in this case) 4) Then the macro formats the TITLE rows so that they are merged across the columns and thus centred on the report. My problem comes about when dealing with non-contiguous column ranges and the merging of the cells. In the below example the MTDYTDReport named range includes columns D, F and H. Therefore for some reason when the TITLE rows are merged they are not being merged across all the columns. Does anyone have an idea of how I can get around this?? Sub MTDYTDReport() ' ' This macro unhides the columns for the MTD, YTD Report ' Macro recorded 05/05/2006 by JTE ' Sheets("P & L Branch").Select Range("AllPLBranch").Select Selection.EntireColumn.Hidden = True Range("MTDYTDReport").Select Selection.EntireColumn.Hidden = False Range("MTDYTDReport1").Select Selection.EntireColumn.Hidden = False 'This section will merge the titles to fit across all columns of report Range("A2:X2").Select With Selection .VerticalAlignment = xlBottom .WrapText = False .Orientation = 0 .AddIndent = False .ShrinkToFit = False .MergeCells = True End With Range("A3:X3").Select With Selection .VerticalAlignment = xlBottom .WrapText = False .Orientation = 0 .AddIndent = False .ShrinkToFit = False .MergeCells = True End With Range("A4:X4").Select With Selection .VerticalAlignment = xlBottom .WrapText = False .Orientation = 0 .AddIndent = False .ShrinkToFit = False .MergeCells = True End With Range("A5:X5").Select With Selection .VerticalAlignment = xlBottom .WrapText = False .Orientation = 0 .AddIndent = False .ShrinkToFit = False .MergeCells = True End With Range("A1").Select End Sub |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Cell Merging Issue | Excel Discussion (Misc queries) | |||
Charting with non contiguous columns | Charts and Charting in Excel | |||
Merging adjacent repeated columns with a macro | Excel Discussion (Misc queries) | |||
DCOUNT for non-contiguous columns | Excel Worksheet Functions | |||
Macro to Combine 2 columns to make one column without merging | Excel Discussion (Misc queries) |