Defining a Range based on a Named Range from another Sheet?

jmpatrick

Active Member
Joined
Aug 17, 2016
Messages
477
Office Version
  1. 365
Platform
  1. Windows
Happy Friday!

I'm trying to define run code only if the value does not match one of the values in a Named Range on another sheet. Sadly, it's not working.

Here's what I have:

VBA Code:
Sub AddJobEditHyperlinks()

    Application.EnableEvents = False
    Application.ScreenUpdating = False
    Application.DisplayAlerts = False

    Dim cl As Range
    Dim Hol As Range
    
    Set Hol = Worksheets("Holidays").Range("HolidaysAll")
    
    For Each cl In Range("SubLotColumn", Range("C" & Rows.Count).End(xlUp))
        
        If cl.Value <> Hol Then
            ActiveSheet.Hyperlinks.Add Anchor:=cl, Address:="", SubAddress:=cl.Address, ScreenTip:="Click To Open Job Edit Window"
        End If
        
    Next cl
    
    Application.EnableEvents = True
    Application.ScreenUpdating = True
    Application.DisplayAlerts = True
    
End Sub
 

Excel Facts

Workdays for a market open Mon, Wed, Friday?
Yes! Use "0101011" for the weekend argument in NETWORKDAYS.INTL or WORKDAY.INTL. The 7 digits start on Monday. 1 means it is a weekend.
If "Hol" is a multi-cell range, then you will need to loop through that too, just like you are looping through your "cl" range.
So you would need "a loop inside another loop".

Or, you may be able to store the holidays in an array and use some array logic to find if the date in a particular cell is found in that array.
 
Upvote 0
If "Hol" is a multi-cell range, then you will need to loop through that too, just like you are looping through your "cl" range.
So you would need "a loop inside another loop".

Or, you may be able to store the holidays in an array and use some array logic to find if the date in a particular cell is found in that array.

Thanks for the reply. I was able to use a similar concept from last week. Still doesn't work but I think it's closer:

VBA Code:
Sub AddJobEditHyperlinks()

    Application.EnableEvents = False
    Application.ScreenUpdating = False
    Application.DisplayAlerts = False
   
    x = Worksheets("Holidays").Range("HolidaysAll").Value

    If InStr(Worksheets("Calendar").Range("C" & ActiveCell.Row).Value, x) Then GoTo SkipHyperlink
   
    'ActiveSheet.Unprotect

    Dim cl As Range
    For Each cl In Range("SubLotColumn", Range("C" & Rows.Count).End(xlUp))
        If cl.Value <> "" Then
            ActiveSheet.Hyperlinks.Add Anchor:=cl, Address:="", SubAddress:=cl.Address, ScreenTip:="Click To Open Job Edit Window"
        End If
    Next cl
   
    'Protect Calendar
    'ActiveSheet.Protect DrawingObjects:=False, Contents:=True, Scenarios:=False, AllowFormattingCells:=True, AllowFormattingColumns:=True, AllowFormattingRows:=True, AllowInsertingColumns:=True, AllowInsertingRows:=True, AllowInsertingHyperlinks:=True, AllowDeletingColumns:=True, AllowDeletingRows:=True, AllowSorting:=True, AllowFiltering:=True, AllowUsingPivotTables:=True

SkipHyperlink:

    Application.EnableEvents = True
    Application.ScreenUpdating = True
    Application.DisplayAlerts = True
   
End Sub
 
Upvote 0
If "Hol" is a multi-cell range, then you will need to loop through that too, just like you are looping through your "cl" range.
So you would need "a loop inside another loop".

Or, you may be able to store the holidays in an array and use some array logic to find if the date in a particular cell is found in that array.

Here's where I'm at now. This does not throw an error, but it's not skipping rows whose value in "C" is found in the Named Range:

VBA Code:
Sub AddJobEditHyperlinks()

    Application.EnableEvents = False
    Application.ScreenUpdating = False
    Application.DisplayAlerts = False
   
    Dim x As Variant

    Dim cl As Range
    For Each cl In Range("SubLotColumn", Range("C" & Rows.Count).End(xlUp))
   
    For Each x In Worksheets("Holidays").Range("HolidaysAll").Value
   
        If InStr(Worksheets("Calendar").Range("C" & ActiveCell.Row).Value, x) Then GoTo SkipHyperlink
           ActiveSheet.Hyperlinks.Add Anchor:=cl, Address:="", SubAddress:=cl.Address, ScreenTip:="Click To Open Job Edit Window"
    Next
   
SkipHyperlink:
       
    Next cl

    Application.EnableEvents = True
    Application.ScreenUpdating = True
    Application.DisplayAlerts = True
   
End Sub
 
Upvote 0
I am kind of confused by this line here:
VBA Code:
    For Each cl In Range("SubLotColumn", Range("C" & Rows.Count).End(xlUp))
What exactly are you trying to do here?
What/how is "SubLotColumn" defined?
 
Upvote 0
I am kind of confused by this line here:
VBA Code:
    For Each cl In Range("SubLotColumn", Range("C" & Rows.Count).End(xlUp))
What exactly are you trying to do here?
What/how is "SubLotColumn" defined?

That's the Named Range of the cells being looped through.

I made a couple changes. No errors, but it doesn't skip x values.

VBA Code:
Sub AddJobEditHyperlinks()

    Application.EnableEvents = False
    Application.ScreenUpdating = False
    Application.DisplayAlerts = False
    
    Sheets("Calendar").Activate
    ActiveSheet.Unprotect
    Application.Goto Reference:="SubLotColumn"
    Selection.Hyperlinks.Delete
    
    Dim cl As Range
    
    Dim varName As Variant
    Dim rng As Variant
    
    varName = "x"
    rng = Worksheets("Holidays").Range("HolidaysAll").Value
    
    For Each cl In Range("SubLotColumn", Range("C" & Rows.Count).End(xlUp))
        If cl.Value = x Then GoTo SkipHyperlink
            ActiveSheet.Hyperlinks.Add Anchor:=cl, Address:="", SubAddress:=cl.Address, ScreenTip:="Click To Open Job Edit Window"
        
SkipHyperlink:

    Next cl
    
    Call ProtectCalendar
    
    Application.EnableEvents = True
    Application.ScreenUpdating = True
    Application.DisplayAlerts = True
    
End Sub
 
Upvote 0
Can you post samples of the two data ranges involved, so I can see exactly what your data looks like, and try to recreate the scenario on my side?
Please also let me know the exact addresses of your Named Ranges.

MrExcel has a tool called “XL2BB” that lets you post samples of your data that will allow us to copy/paste it to our Excel spreadsheets, so we can work with the same copy of data that you are. Instructions on using this tool can be found here: XL2BB Add-in

Note that there is also a "Test Here” forum on this board. This is a place where you can test using this tool (or any other posting techniques that you want to test) before trying to use those tools in your actual posts.
 
Upvote 0
Can you post samples of the two data ranges involved, so I can see exactly what your data looks like, and try to recreate the scenario on my side?
Please also let me know the exact addresses of your Named Ranges.

MrExcel has a tool called “XL2BB” that lets you post samples of your data that will allow us to copy/paste it to our Excel spreadsheets, so we can work with the same copy of data that you are. Instructions on using this tool can be found here: XL2BB Add-in

Note that there is also a "Test Here” forum on this board. This is a place where you can test using this tool (or any other posting techniques that you want to test) before trying to use those tools in your actual posts.

Using your fine add-in, here is my main sheet. The named range SubLotColumn is in col. C of this page.

MODELS have BLACK background
DateSub # / Lot #Subdivision
11/14/22 - Monday 7579-38CGM - Cottages At Gregory Meadows
11/15/22 - Tuesday 7579-55CGM - Cottages At Gregory Meadows
11/15/22 - Tuesday 7817-1BAL - Ballantyne
11/15/22 - Tuesday 7872-10BAW - Brookfield At Waldon Village
11/15/22 - Tuesday 7872-37BAW - Brookfield At Waldon Village
11/16/22 - Wednesday 7746-43EMP - Emerald Park
11/16/22 - Wednesday 7746-44EMP - Emerald Park
11/17/22 - Thursday 7578M-18TMP - Townes At Merrill Park
11/17/22 - Thursday 7746-42EMP - Emerald Park
11/18/22 - Friday 7335-24FS - Fieldstone
11/18/22 - Friday 7335-31FS - Fieldstone
11/18/22 - Friday 7335-8FS - Fieldstone


...and here is the sheet with the data (from the named range HolidaysAll

1/1/2023New Years Day
5/29/2023Memorial Day
7/4/2023Independence Day
Saturday
Sunday
9/4/2023Labor Day
11/23/2023Thanksgiving
12/24/2023Christmas Eve
12/25/2023Christmas Day
12/31/2023New Years Eve
Saturday
Sunday
Office Closed


Here is my current code:

VBA Code:
Sub AddJobEditHyperlinks()

    Application.EnableEvents = False
    Application.ScreenUpdating = False
    Application.DisplayAlerts = False
    
    Sheets("Calendar").Activate
    ActiveSheet.Unprotect
    Sheets("Calendar").Range("SubLotColumn").Hyperlinks.Delete
    
    Dim cl As Range
    
    Dim varName As Variant
    Dim rng As Variant
    
    varName = "x"
    rng = Worksheets("Holidays").Range("HolidaysAll").Value
    
    For Each cl In Range("SubLotColumn", Range("C" & Rows.Count).End(xlUp))
        If cl.Value = x Then GoTo SkipHyperlink
            ActiveSheet.Hyperlinks.Add Anchor:=cl, Address:="", SubAddress:=cl.Address, ScreenTip:="Click To Open Job Edit Window"
        
SkipHyperlink:

    Next cl
    
    Call ProtectCalendar
    
    Application.EnableEvents = True
    Application.ScreenUpdating = True
    Application.DisplayAlerts = True
    
End Sub
 
Upvote 0
Made a couple more changes. No errors but still doesn't skip the x values.

VBA Code:
Sub AddJobEditHyperlinks()

    Application.EnableEvents = False
    Application.ScreenUpdating = False
    Application.DisplayAlerts = False
    
    Sheets("Calendar").Activate
   
    Dim cl As Range
    
    Dim varName As Variant
    Dim rng As Variant
    
    varName = "x"
    rng = Worksheets("Holidays").Range("HolidaysAll").Value
    
    For Each cl In Range("SubLotColumn", Range("C" & Rows.Count).End(xlUp))
    
    If cl.Value = x Then GoTo SkipHyperlink
        If cl.Value <> "" Then
            ActiveSheet.Hyperlinks.Add Anchor:=cl, Address:="", SubAddress:=cl.Address, ScreenTip:="Click To Open Job Edit Window"
        End If
        
SkipHyperlink:
        
    Next cl
    
    Application.EnableEvents = True
    Application.ScreenUpdating = True
    Application.DisplayAlerts = True
    
End Sub
 
Upvote 0
I think you provided screen shots from the XL2BB add-in, as if you posted images using the tool correctly, it typically shows the column and row headers, which would be very helpful in seeing where exactly all this data resides on your worksheets.
 
Upvote 0

Forum statistics

Threads
1,215,095
Messages
6,123,073
Members
449,093
Latest member
ripvw

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