在 Filemaker 中搜索最近修改的记录?

发布于 2024-12-19 05:05:58 字数 145 浏览 4 评论 0原文

我正在使用 FileMaker 11 并尝试进行搜索,该搜索将仅显示自昨天以来已修改或添加的记录。我正在尝试使用 Modification_timestamp 字段(我认为这是内置的 FM 字段),但我似乎找不到脚本的写入语法。任何帮助表示赞赏。

谢谢, 约翰

I'm using FileMaker 11 and trying to do a search that will show me only those records that have been modified or added since yesterday. I'm trying to use the Modification_timestamp field (which I think is a built-in FM field) but I can't seem to find the write syntax for the script. ANy help is appreciated.

Thanks,
John

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

晚风撩人 2024-12-26 05:05:58

它不是内置的,您必须添加时间戳字段并确保检查该字段的自动输入选项卡上的“修改日期和时间”。

脚本将是这样的:

Enter Find Mode
Set Field[ My Table::Modified On, ">=" & GetAsDate( Get( CurrentDate ) - 1 ) ]
Perform Find

It's not built-in, you have to add timestamp fields and make sure to check the "Modification Date and Time" on the field's auto-enter tab.

The script will be like that:

Enter Find Mode
Set Field[ My Table::Modified On, ">=" & GetAsDate( Get( CurrentDate ) - 1 ) ]
Perform Find
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文