|
|
To check if a specific record exists use Check if a specific record exists
action.
Note: Change the values listed in
red to match your specific needs.
'********** Check if specific record exists ************
dim rsExists
set rsExists = dal.AnyTable.Query("AnyColumn='AnyValue'","")
if not rsExists.eof then
' if record exists do something
else
' if dont exist do something else
end if
rsExists.Close : set rsExists = Nothing
|
|