我正在尝试在Access 2013中的After Insert数据宏中运行函数调用,并将计算的值保存到另一个包含其他几个值的表中。
函数调用似乎有效,因为它显示了我放在代码末尾的调试消息框,但该值未传递到另一个表,但存储了其他值。
数据宏的编写如下:
Create a Record in CalculatedHC
SetField
Name PlayerID
Value = [RoundInfo].[PlayerID]
SetField
Name RoundID
Value = [RoundInfo].[RoundID]
SetField
Name DatePlayed
Value = [RoundInfo].[DatePlayed]
SetField
Name ExactHC
Value = EHC([PlayerID])