Newbies RH Design Posted September 24, 2001 Newbies Posted September 24, 2001 I am writing values to succesive cells in Filemaker 5. When I go to a new cell, if its value is "" then I need to perform a different action. I need something like ...if current cell = "" then ...etc. Thanks
homelink Posted September 28, 2001 Posted September 28, 2001 Here's the syntax to set a variable to a field value. Use the variable to execute your conditional. set SomeVariable to cell "SomeField" of record 1
Newbies RH Design Posted September 28, 2001 Author Newbies Posted September 28, 2001 Thanks for your comment. I see that I didn't explain the problem clearly. To paraphrase the code in English: repeat go to the next cell if this cell is empty then --(I don't know this cell's name) do this else do that end if end repeat My question is whether applescript has syntax to identify and read the value of the cell it is currently in. (such as it can with a record) This would make it easy, but I can't find the magic words. I realize that I can use FMP to get status(current Field Name) and then get the cell value from that. Bob
h2o Posted September 29, 2001 Posted September 29, 2001 It is not possible to get the value of "the current cell". "Current" is only avable for record and layout. To get the value of a cell, you must use the name or number from the cell. something like : tell application "FileMaker Pro" repeat with x from 1 to (count fields) if (get cell x of current record) = "" then do this else do that end if end repeat end tell Jean-Marie -HOO;-) [ September 29, 2001: Message edited by: Jean-Marie ]
Recommended Posts
This topic is 8457 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