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]
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top