Office中国论坛/Access中国论坛

标题: DLOOKUP问题 [打印本页]

作者: myszh    时间: 2007-2-12 18:11
标题: DLOOKUP问题
DLookup能不能返回 两个字段的值或多个值



如:

我现在是一个个返回的

X=DLookup("打印id", "打印", "ID=" & Me.Text11 & "")

Y=DLookup("打印SL", "打印", "ID=" & Me.Text11 & "")

Z=DLookup("打印XS", "打印", "ID=" & Me.Text11 & "")

...

....


作者: wind_sun    时间: 2007-2-12 19:33
这个很正常啊.
作者: 一点通    时间: 2007-2-12 19:42
如果ID是数字格式,改为这样(删除后面的引号)

X=DLookup("打印id", "打印", "ID=" & Me.Text11)



Y=DLookup("打印SL", "打印", "ID=" & Me.Text11)



Z=DLookup("打印XS", "打印", "ID=" & Me.Text11)

如果是文本格式,改为这样(加单引号)

X=DLookup("打印id", "打印", "ID='" & Me.Text11 & "")



Y=DLookup("打印SL", "打印", "ID='" & Me.Text11 & "")



Z=DLookup("打印XS", "打印", "ID='" & Me.Text11 & "")  
作者: tz-chf    时间: 2007-2-12 19:44
不如打开记录集




欢迎光临 Office中国论坛/Access中国论坛 (http://www.office-cn.net/) Powered by Discuz! X3.3