RE: Delete Records in FileMaker
RE: Delete Records in FileMaker
- Subject: RE: Delete Records in FileMaker
- From: Eric Schult <email@hidden>
- Date: Fri, 21 Sep 2001 07:57:59 -0500
>
I want to delete records in a filemaker database that contain certain
>
information in a particular cell. Can anyone give me some direction on how
>
to do this? I can't find any examples of this on the web.
Something like this should do the trick:
tell application "FileMaker Pro"
tell database "dbase name"
delete (every record whose cell "fieldName" contains "fieldContents")
end tell
end tell
- WES