使用可变字段名称访问UDF

时间:2015-11-17 16:52:36

标签: access-vba naming-conventions user-defined-functions

32Bit Access 2013 / Win 7 64bit

功能提示输入表名和两个字段名,具体取决于第二个字段中的数据,将输入第一个字段。

Public Function FillTableGaps(TableName As String, Field1 As String, Field2 As String)

在不同的表格中,这些字段,字段1& Field2可以是任何东西,所以我需要它们是动态的。

CTbl![Country] & CTbl![State]
'was replaced by
CTbl![Field1] & CTbl![Field2] 'respectively

现在我只需要能够通过" Country"和"州"作为Field1和Field2来读/写这些字段。

1 个答案:

答案 0 :(得分:1)

考虑括号,例如:

CTbl(Field1) & CTbl(Field2)