Checking for named ranges in a workbook

loopoo

New Member
Joined
Nov 10, 2005
Messages
43
Hello!

Can anyone help me with the following problem:

I have some ranges in my workbook, and I want to check if the content of a cell is the name of a range.

For example:

I have : range1
range2
range3
range4
range5

I want to see if ActiveCell.Offset(0,-2).Value is one of the named ranges in the workbook.

How can I make that check???


Thanks in advance,
Chris
 

Excel Facts

What is =ROMAN(40) in Excel?
The Roman numeral for 40 is XL. Bill "MrExcel" Jelen's 40th book was called MrExcel XL.
Using the code below, a message will let you know if the contents of the activecell matches a range name

Sub RangeCheck()
RangeFound = False
RangeNameFound = ""
RangeCellsFound = ""
For Each rn In ActiveWorkbook.Names
If rn.Name = ActiveCell.Value Then
RangeNameFound = rn.Name
RangeCellsFound = ActiveWorkbook.Names(rn.Name).RefersTo
RangeFound = True
End If
Next

If RangeFound Then
MyMessage = MsgBox(RangeNameFound & " is the name of a range: " & RangeCellsFound, vbOKOnly, "Range Name Found")
Else
MyMessage = MsgBox(ActiveCell.Value & " is not the name of a range.", vbOKOnly, "Range Name Not Found")
End If

End Sub
 
Upvote 0

Forum statistics

Threads
1,214,929
Messages
6,122,314
Members
449,081
Latest member
tanurai

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