I've got a bit of a wacky condition (has to do with an inherited mess..)
I need to make to operator in an if statement variable, and could use some help with getting the syntax correct:
so it would go like this (or so I thought), but it "seems" to be wreaking havoc to the for next loop that it's nested in...
I'm getting a "next without for" error
Code:
For Each tdf In dbs.TableDefs 'loop thru all of the tables in the project
' Relink connected tables for only the type of backend file being relinked
If vlinktype = tbl Then
If Left(tdf.Name, 3) <> "tbe" Then
Else
If Left(tdf.Name, 3) = "tbe" Then
End If
.... large block of code
end if
Next tdf
many thanks in advance,
mark