功能在动作数据宏之后调用

时间:2014-01-27 01:00:47

标签: vba access-vba ms-access-2013

我正在尝试在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])

0 个答案:

没有答案