Newbies chickaroo Posted May 15, 2007 Newbies Posted May 15, 2007 I am new to filemaker. I need to write a script that will allow me to: find a keyword in one field in all records and then in all of those FOUND records ONLY, I need to enter, that is, ADD (without deleting other info within that cell) a specific text word in a DIFFERENT field . Please help!
Vaughan Posted May 15, 2007 Posted May 15, 2007 Something like this might work: Enter Find Mode [] Set Field [ onefield ; "keyword" ] Error Capture [on ] Perform Find [] Error Capture [off ] If [ Get( FoundCount ) > 0 ] Go to Record/Request [ first ] Loop Set Field [ differentfield ; "word" & " " & differentfield ] Commit Record/Request [] Got to Record/Request [ next, exit after last ] End Loop End If
Recommended Posts
This topic is 6404 days old. Please don't post here. Open a new topic instead.
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now