Need help with applying a condition

D

Drew

Set a Select Case "fieldname" in the code to allow you to
have specific fields updated, deleted, etc. or a rash of
of things to happen. Make a Case "fieldvalue" line
followed by the code you wish to happen. This is like an
If... ElseIf... ElseIf .. End If kind of thing.

Select Case "fieldname"

Case "fieldvalue1"
insert code here

Case "fieldvalue2"
insert code here

end select

Hope this is what you are searching for.

Drew
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top