Jump to content
View in the app

A better way to browse. Learn more.

FMForums.com

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

read current cell value in Filemaker

Featured Replies

  • Newbies

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

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

  • Author
  • Newbies

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

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 ]

Create an account or sign in to comment

Important Information

By using this site, you agree to our Terms of Use.

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.