icic, thanks
i think i'll just stick to iterating through the list then. might be too much trouble searching for the error trapping syntax.
thanks a lot
It isn't really that difficult, but it does involve error trapping ..
Code:
On Error Resume Next
Set fld =
Code:
RecordSet
Code:
.Fields("
Code:
FieldName
Code:
")
On Error Goto 0
If fld is Nothing Then
Code:
' Field does NOT exist
Code:
Else
Code:
' It does
Code:
End If
Enjoy,
Tony
------------------------------------------------------------------------------------------------------ We want to help you; help us to do it by reading FAQ222-2244 before you ask a question.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.