I have a continuous form and I would like to add in a textbox in the form to display the date of the loaded data
I want to display "DATA FOR PERIOD 2015-11"
Since, I can't use subform in my continuous form. I'm trying to use a D look up function because I'm using another record source for my Form.
However , I keep getting error #NAME.
Anyone could help me ?
Thanks in advance
Code:=DLookUp("[LOAD_PERIOD]","[Load_Date]","[LOAD_PERIOD]"="DATA FOR PERIOD " & Year([LOAD_PERIOD]) & "-" & Format(Month([Load_Period])))