Re: Detect if a Defined Name Exists
- From: Jarek Kujawa <blinok@xxxxxxxxx>
- Date: Wed, 14 Jan 2009 05:50:15 -0800 (PST)
adjust "sth" name to suit yr needs
Sub cus2()
Dim nom As Name
For Each nom In ActiveWorkbook.Names
If nom.Name = "sth" Then
MsgBox "Name 'sth' exists in this workbook"
End If
Next nom
End Sub
On 14 Sty, 14:23, Rob <R...@xxxxxxxxxxxxxxxxxxxxxxxxx> wrote:
Hi. I was wondering if there was a way for a macro to detect if there was a
field name already in use for a workbook?
I already tried...
If Exist Workbooks("Export.xls").Names("DATA1") Then
As well as...
If Workbooks("Export.xls").Names("DATA1") = True Then
Thanks very much,
Rob
.
- References:
- Detect if a Defined Name Exists
- From: Rob
- Detect if a Defined Name Exists
- Prev by Date: Pros/Cons of having users Trust the VBA Project
- Next by Date: Reset All Command Buttons on an Excel UserForm
- Previous by thread: RE: Detect if a Defined Name Exists
- Next by thread: Re: Detect if a Defined Name Exists
- Index(es):
Relevant Pages
|