Reports

  • Thread starter Malt via AccessMonster.com
  • Start date
M

Malt via AccessMonster.com

Hi,

I have a report that has a Start date and an End date text box in the header
which have their data coming from a parameter query. I need to display the
full date, ie. August 1, 2007, in each text box. There is also a Date label
on the left side of this line and a to label between the text boxes. I have
set the Start date to right aligned and the End date to left aligned. This
causes a gap between the Date label and the Start date text when the month is
less than September. Is there any way to avoid this gap without causing a gap
on either side of the to label??

Date: April 1, 2006 to March 31, 2007
Date: September 1, 2006 to August 31, 2007
 
G

Guest

You can combine them into one control source:
=Format([Start Date],"mmmm d, yyyy") & " to " & Format([End Date],"mmmm d,
yyyy")

IMHO, replace parameter prompts with references to controls on forms.
 
M

Malt via AccessMonster.com

Great! Thanks, Duane

Duane said:
You can combine them into one control source:
=Format([Start Date],"mmmm d, yyyy") & " to " & Format([End Date],"mmmm d,
yyyy")

IMHO, replace parameter prompts with references to controls on forms.
[quoted text clipped - 9 lines]
Date: April 1, 2006 to March 31, 2007
Date: September 1, 2006 to August 31, 2007
 

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