I'm sure there is something very very simple that I'm missing here but I have 2 global variables FDateFrom and FDateTo which contain 2 dates for a search.
I need to output these in a text field - every time I add the name of the variables to the string Access overrides me and changes them to fields???
="Date Range: " & [FDateFrom] & " to " & [FDateTo]
Should be
="Date Range: " & FDateFrom & FDateTo
I need to output these in a text field - every time I add the name of the variables to the string Access overrides me and changes them to fields???
="Date Range: " & [FDateFrom] & " to " & [FDateTo]
Should be
="Date Range: " & FDateFrom & FDateTo