Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如果这不是问这个问题的论坛,请引导我到正确的论坛。
我正在尝试学习 Micosoft Access 2013 编程。我正在尝试在表单上创建一个报告,以根据用户定义的创建日期范围显示表格信息。我该怎么做呢?创建日期是否自动存储,可供检索?
不,Access 不会自动存储记录的创建日期。但是,您可以通过向Date/Time表中添加一个名为 [RecordCreated] (或其他)的字段并将其设置Default Value为Now(). 这不会为现有记录添加时间戳,但新记录将自动记录其创建日期(和时间)。
Date/Time
Default Value
Now()