Filemaker 10:通过计算填充重复字段
我的 Filemaker 数据库中有一个重复字段(例如大小 10),并尝试使用值 1..10 填充它。
我现在想使用“自动输入计算”来填充该字段:
Case(
RepField = 1; 1;
RepField = 2; 2
)
但该字段不包含任何值。如何根据计算填写该字段?
I have a repeating field (say size 10) in my Filemaker database and try to fill it say with the Values 1..10.
I now want to use "Auto-Enter Calculation" to fill the field:
Case(
RepField = 1; 1;
RepField = 2; 2
)
But the field does not contain any values. How do I fill the field based on a calculation?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
自动输入的计算无法在其他重复中设置值。您需要使用脚本触发器或按钮来调用脚本来设置记录创建的重复次数。
An auto-entered calculation cannot set values in the other repetitions. You'd need to use a script trigger or a button to call a script to set the repetitions on record creation.