Hi:
This is my formula:
=DLookUp("[CONTACT/REF DATE]","tbl_Referred","[NAMEDATE] = '" & [Reports]![rpt_Ref_Clients_All]![NAMEDATE] & "'")
This works to look up the same value of the same record but I would like [CONTACT/REF DATE] value from the next record and so I tried:
=DLookUp("[CONTACT/REF DATE]","tbl_Referred","[NAMEDATE] = '" & [Reports]![rpt_Ref_Clients_All]![NAMEDATE] & "'+1")
But that didn't work. If the formula is:
DLookUp("[Contact/Ref Date]","tbl_Referred","[ID]=Reports![rpt_Ref_Clients_All]![ID]+2") --> This will result in the date of the next record.
Does it work only with numbers? Is there any other way to do this?
Thanks.
This is my formula:
=DLookUp("[CONTACT/REF DATE]","tbl_Referred","[NAMEDATE] = '" & [Reports]![rpt_Ref_Clients_All]![NAMEDATE] & "'")
This works to look up the same value of the same record but I would like [CONTACT/REF DATE] value from the next record and so I tried:
=DLookUp("[CONTACT/REF DATE]","tbl_Referred","[NAMEDATE] = '" & [Reports]![rpt_Ref_Clients_All]![NAMEDATE] & "'+1")
But that didn't work. If the formula is:
DLookUp("[Contact/Ref Date]","tbl_Referred","[ID]=Reports![rpt_Ref_Clients_All]![ID]+2") --> This will result in the date of the next record.
Does it work only with numbers? Is there any other way to do this?
Thanks.