how to show calculated field in reports!!!

M

manish

h1!
I have two calculated fields in a query that uses it to
filter records. they are
[start date]
[last date]
now my problem is that i want the values of these fields
to show in my report in the header. for example it should
be like :

Transaction for the period [start date] to [last date]

any suggestions ???
help!
manish
 
S

SteveJ

Create a text box and in the Properties->Data->Control Source enter the
following:

="Transaction for the period " + Format([start date], "dd/mm/yyyy") + " to "
+ Format([last date], "dd/mm/yyyy")
 
M

manish

Dear SteveJ
I tried ur suggestion and it worked !!! thanx a lot for it.
regards
manish
-----Original Message-----
Create a text box and in the Properties->Data->Control Source enter the
following:

="Transaction for the period " + Format([start date], "dd/mm/yyyy") + " to "
+ Format([last date], "dd/mm/yyyy")

h1!
I have two calculated fields in a query that uses it to
filter records. they are
[start date]
[last date]
now my problem is that i want the values of these fields
to show in my report in the header. for example it should
be like :

Transaction for the period [start date] to [last date]

any suggestions ???
help!
manish


.
 

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