第一个表中的GTRR或备选表中的GTRR

时间:2012-12-06 02:06:37

标签: filemaker

我有两个表,一个用于当前的amchines,另一个用于achived机器。我有一个带有按钮的页面,该按钮会转到相关记录并指向机器表,如果我将该记录移动到achive表中按钮不再有效。

我是否可以创建一个基本上尝试转到机器表中相关roecord的脚本,并且没有任何内容转到存档表中的相关记录?

1 个答案:

答案 0 :(得分:1)

有几种方法可以做你想要的,包括在你去一个之前检查相关记录:

If Count(current machines::index) > 0
  Go to Related Record (from current machines)
Else If Count(archived machines::index) > 0
  Go to Related Record (from archived machines)
Else
  Error Message
End If

或者只是去相关记录并查看是否找到了任何内容:

Set Error Capture On  // don't show an error message to the user
Go to Related Record (from current machines)
If Get(FoundCount) = 0
  Go to Related Record (from archived machines)
End If
Set Error Capture Off