Hey guys,
I need help. I need to extract out data.. Please refer to "Picture 1" for the table...
From this table, I need Access to be able to compare the 2 fields, and extract out the overdue drawings.. From what my mentor's condition, he said that overdue drawings are drawings that do NOT have "LatestRevDate", from the picture, you can see that it's Drawing 2729-01.01 and 3076-41.01
Can anybody help me out so that i could get the end product(refer to picture2)
For far, me and my colleague have use VBA to create the functions, but it outcome is not what we wanted, please help us out on this.. thanks.
-----------------------------------------------------------------------
[Note: FieldArray(1) is "latestRevDate" and FieldArray(0) is "DateToOwner"]
Function Overdue(ParamArray FieldArray() As Variant)
' Declare a variant
Dim N As Variant
' setting a variant
N = Null
' Condition
If FieldArray(1) = Null And FieldArray(0) <> Null Then
N = FieldArray(0)
End If
End Function
-----------------------------------------------------------------------
Thanks in adv!![]()