本文介绍了如何将单个值字段引用到多值字段?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 如何将单个值字段引用到多值字段? 我有时会使用form1中的宏来打开包含相同ID的表单2 例如: 开放表格:WorkOrder where condition:=" [TenantID] =" &安培; Nz([TenantID],0) 你怎么写这个相同的参考但是对于多值字段? =[TenantID] = &安培; Nz([多值表达式?],0) EDIT____________ 我试过: =" [TenantID] =" &安培; Nz([TenantID],0) =" [TenantID] =" &安培; Nz([TenantID] .Value,0) =" [TenantID] =" &安培; Nz(([TenantID] .Value),0) =" [TenantID] =" &安培; Nz([TenantID]。[Value],0) =" [TenantID] =" &安培; Nz(([TenantID]。[Value]),0) 且没有工作解决方案 how do you reference a single value field to a multi-value field? I sometime use a macro in form1 to open form 2 containing the same ID example:Open form: WorkOrder where condition: ="[TenantID]=" & Nz([TenantID],0) How do you do write this same reference but for a multi value field? ="[TenantID]=" & Nz([Multi-value expression?],0) EDIT____________ I tried: ="[TenantID]=" & Nz([TenantID],0)="[TenantID]=" & Nz([TenantID].Value,0)="[TenantID]=" & Nz(([TenantID].Value),0)="[TenantID]=" & Nz([TenantID].[Value],0)="[TenantID]=" & Nz(([TenantID].[Value]),0) and none worked 解决方案 这篇关于如何将单个值字段引用到多值字段?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 10-19 22:40