Setting Named Ranges via VBA

CROY1985

Well-known Member
Joined
Sep 21, 2009
Messages
501
Office Version
  1. 365
Platform
  1. Windows
Hi all

I've run into an issue when naming ranges within a vba routine, where the time it takes gets exponentially larger as the number of rows in the data to be named is increased.

My dataset is 213 columns wide, i have a standard template which data (varying number of rows) is copied into, and then the macro names each range (1 per column to 213) based on starting at row 4 and ending on the last row of data.

The first datset is around 3000 rows and the naming process takes around 22 seconds.
When i run this on a dataset of 12000 rows i would have expected it to take around 4 times longer, but it is taking greater than 5 minutes (at which point i'm abandoning the process, )

The section of code is as below:

Code:
Worksheets("Data").ActivateApplication.Calculation = xlCalculationManual
lastcol = ActiveSheet.UsedRange.Columns.Count
lastrow = ActiveSheet.Cells(ActiveSheet.Rows.Count, "A").End(xlUp).Row


For i = 1 To lastcol
If Cells(2, i) <> "" Then
ActiveWorkbook.Names.Add Name:=Cells(2, i).Value, RefersTo:=Worksheets("Data").Range(Cells(4, i), Cells(lastrow, i))
End If
Next i


Any ideas on how this could be optimised?

Thank you
 

Excel Facts

How to fill five years of quarters?
Type 1Q-2023 in a cell. Grab the fill handle and drag down or right. After 4Q-2023, Excel will jump to 1Q-2024. Dash can be any character.
Personally I wouldn't expect it to take noticeably longer to create the names just because there are more rows of data, since all you are really doing is assigning an address. Are you sure this is the part that takes the time?
 
Upvote 0
Hi Rory

Yes, that code is the extent of the routine. It is called it in part of a larger routine, but even running that in isolation just seems to break excel.

I am using an old version of excel (2007), perhaps this is contributing to the issue?
I might try and run it on a different machine with a different version of excel and see if it fairs any better.
 
Upvote 0
Assuming all those cells are on the Data sheet, is it any faster if you use:

Code:
With Worksheets("Data")
    For i = 1 To lastcol
        If .Cells(2, i) <> "" Then .Range(.Cells(4, i), .Cells(lastrow, i)).Name = .Cells(2, i).Value
    Next i
End With
 
Upvote 0
No noticeable difference, i have discovered that its when naming certain "columns" that it slows down. For example, when naming ab4:ab12000 this causes a serious slowdown.

Interestingly, this is the first column that is subsequently referenced in a formula:

=RANK(AB4,Turnover_0)+COUNTIF(AB$4:AB4,AB4)-1

I'm just wondering if its due to having a mix of named and absolute references in the above that is perhaps causing excel to do some sort of evaluation of the formula (if not a full recalc), even though i have calculation set to manual.
 
Upvote 0
Just wanted to update on the above issue.

Naming the ranges before populating the dependent columns with formula fixes the issue.

I believe my initial suspicion that excel is evaluating the named range section of the formula despite calculation being turned off is correct, but I've no way to check.

Anyway, all is well that ends well.
 
Upvote 0

Forum statistics

Threads
1,214,944
Messages
6,122,392
Members
449,081
Latest member
JAMES KECULAH

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top