Creating String on Report

  • Thread starter gmazza via AccessMonster.com
  • Start date
G

gmazza via AccessMonster.com

Hey there,
I am trying to create a string on my report.
I need it to say:
"Logs between " then my DateFrom field on my report here "And " then my
DateTo field here

I don't know how to code this or display it. because it needs to fit nicely
for every date as the dates can chnage,
Any help is appreciated.
 
F

fredg

Hey there,
I am trying to create a string on my report.
I need it to say:
"Logs between " then my DateFrom field on my report here "And " then my
DateTo field here

I don't know how to code this or display it. because it needs to fit nicely
for every date as the dates can chnage,
Any help is appreciated.

Use an Unbound text control.
="Logs between " & [DateFrom] & " And " & [DateTo]
 
Top