|
问题是这样的.
多个日期型字段:条件1 条件2 条件3 条件4 条件5 条件6
选出其中最大日期的函数我有了.也是在Office中国找到的
---------Function Maximum(ParamArray FieldArray() As Variant)
Dim I As Integer
Dim currentVal As Variant
currentVal = FieldArray(0)
For I = 0 To UBound(FieldArray)
If FieldArray(I) > currentVal Then
currentVal = FieldArray(I)
End If
Next I
Maximum = currentVal
End Function-----------------
使用CDate(Maximum([条件1],[条件2],[条件3],[条件4],[条件5],[条件6]))得到最大值
但是现在问题是能否的到所得到的最大值的字段名???
在sql里面好像可以用rs(aa).name得到,但是在access中怎么完成呢?
其中会遇到这种情况,有几个的值是相同的 ,但是我要找到最大的一个值,也就是条件6.怎么完成??大家帮帮忙! |
|