Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I am trying to resize a named excel array. When I count the startin
rows of the range they equal 17520. When I count the starting column of the range they equal 244. I then adjust these values by two variables AMax = 17520 and BMax 244. I then pass the difference between the starting values and thes adjustment values to two variables. They ar both 0. These variable are the incremental change to the rows and columns of the range. I the resize the range with these increment variables aand rename it. However when I get to the second last line of the code, it says tha my row count = 244. This cannot be due to the fact that my ro increment = 0. It should equal 17520. What am I missing? Old2DRows = Range("ClearArray").Rows.Count Old2DColumns = Range("ClearArray").Columns.Count Changeto2DRows = Old2DRows - AMax Changeto2DColumns = Old2DColumns - BMax With Range("ClearArray") .Resize(.Rows.Count + Changeto2DRows).Name = "ClearArray" .Resize(.Columns.Count + Changeto2DColumns).Name = "ClearArray" End With New2DRows = Range("ClearArray").Rows.Count New2DColumns = Range("ClearArray").Columns.Coun -- Message posted from http://www.ExcelForum.com |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
how do I resize a range of cells in a column in excel? | Excel Discussion (Misc queries) | |||
I could NOT resize the axis title but excel allows me to resize gr | Charts and Charting in Excel | |||
I could NOT resize the axis title but excel allows me to resize gr | Charts and Charting in Excel | |||
Range Problem | Excel Discussion (Misc queries) | |||
Resize Range - Macro | Excel Worksheet Functions |