antonyx
Arsenal Supporter
- Local time
- Today, 23:21
- Joined
- Jan 7, 2005
- Messages
- 556
a slightly annoying problem..
i open up a report from my form.. the report has 2 textboxes.. my user enters a start date and an end date..
im trying to display the date entered on my report using this unbound textbox..
on the report preview it displays the date fine.. when i print it displays as
#Name?
its annoyin. ive made the textbox bigger.. and it doesnt display either.
im also using these dates as the query criteria.. like so.
is this interfering with the date display?
i cant think why.
i open up a report from my form.. the report has 2 textboxes.. my user enters a start date and an end date..
im trying to display the date entered on my report using this unbound textbox..
Code:
=Format(CDate([Forms]![frmDriverAccounts]![txtstart]),"dd mmmm yyyy")
on the report preview it displays the date fine.. when i print it displays as
#Name?
its annoyin. ive made the textbox bigger.. and it doesnt display either.
im also using these dates as the query criteria.. like so.
Code:
Between [Forms]![frmDriverAccounts]![txtstart] And [Forms]![frmDriverAccounts]![txtend]
is this interfering with the date display?
i cant think why.