Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Any suggestions on writing code to look for a named range within a worksheet
and if it exists, call a macro? Otherwise if named range is not found, continue with currenty code. |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
dim rMyrange as range
on error resume next set rMyrange=Range("MyRangeName") on error goto 0 if not rMyRange is Nothing then call MyMacro HTH -- AP "jkt" a écrit dans le message de news: ... Any suggestions on writing code to look for a named range within a worksheet and if it exists, call a macro? Otherwise if named range is not found, continue with currenty code. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Check if named range exists! | Excel Programming | |||
Determining if a named range exists | Excel Programming | |||
Validate Named Range Exists | Excel Programming | |||
how to tell if a named range exists | Excel Programming | |||
easy way to test if a Named Range exists | Excel Programming |