请高手百忙中帮助一下,我得交差了! 拜托了![attach]36966[/attach]作者: xxj0109 时间: 2009-3-27 16:15
dlookup(),。。。。。。继续等!作者: xxj0109 时间: 2009-3-28 14:24
都很忙?没人理?作者: xxj0109 时间: 2009-3-28 14:40
请各位大侠帮帮忙,报表我已经设计好了,要打印的数据是通过查询得到的左下角和右下角的数据。多谢!作者: Henry D. Sy 时间: 2009-3-28 14:45 http://www.accessbbs.cn/bbs/viewthread.php?tid=9356作者: xxj0109 时间: 2009-3-28 15:38
谢谢。为什么我的报表每次只是对水分值的上线限进行筛选,而没有同时对时间的起始和截止时间段进行筛选?作者: xxj0109 时间: 2009-3-28 15:59
Private Sub Com1()
Dim strWhere As String
strWhere = ""
If Not IsNull(Me.水分上线) Then strWhere = strWhere & "([VarValue] <= " & Me.水分上线 & ") AND "
If Not IsNull(Me.水分下线) Then strWhere = strWhere & "([VarValue] >= " & Me.水分下线 & ") AND "
If Len(strWhere) > 0 Then
strWhere = Left(strWhere, Len(strWhere) - 5)
End If
Me.水分.Form.Filter = strWhere
Me.水分.Form.FilterOn = True
End Sub
Private Sub Com2()
Dim str2 As String
str2 = ""
If Not IsNull(Me.水分上线) Then str2 = str2 & "([VarValue] > " & Me.水分上线 & ") OR "
If Not IsNull(Me.水分下线) Then str2 = str2 & "([VarValue] < " & Me.水分下线 & ") OR "
If Len(str2) > 0 Then
str2 = Left(str2, Len(str2) - 4)
End If
Me.不合格水分.Form.Filter = str2
Me.不合格水分.Form.FilterOn = True
End Sub