format part of a concatenated field

J

Joe C

I am trying to take a date field and a text field and combine them to make a
third field , which would be an Invoice number. The problem I have is the
date field comes over with the slashes. I need them in the original display
of the date and not in the invoice number.

Thanks for your help.
 
R

Rick B

Use format. Something like...


=Format([SomeDateField],"mmddyy") & [InvoiceNumber]
 
J

Joe C

Thanks for your reply. Intiially it did not work. Where am I putting this
statement? Will it go into the format property of the concatenated field?

JC

Rick B said:
Use format. Something like...


=Format([SomeDateField],"mmddyy") & [InvoiceNumber]



--
Rick B



Joe C said:
I am trying to take a date field and a text field and combine them to make
a
third field , which would be an Invoice number. The problem I have is the
date field comes over with the slashes. I need them in the original
display
of the date and not in the invoice number.

Thanks for your help.
 
R

Rick B

No, it will go into an unbound text box on your report.


--
Rick B



Joe C said:
Thanks for your reply. Intiially it did not work. Where am I putting this
statement? Will it go into the format property of the concatenated field?

JC

Rick B said:
Use format. Something like...


=Format([SomeDateField],"mmddyy") & [InvoiceNumber]



--
Rick B



Joe C said:
I am trying to take a date field and a text field and combine them to
make
a
third field , which would be an Invoice number. The problem I have is
the
date field comes over with the slashes. I need them in the original
display
of the date and not in the invoice number.

Thanks for your help.
 
R

Rick B

It will replace your current concatenated "field".


--
Rick B



Joe C said:
Thanks for your reply. Intiially it did not work. Where am I putting this
statement? Will it go into the format property of the concatenated field?

JC

Rick B said:
Use format. Something like...


=Format([SomeDateField],"mmddyy") & [InvoiceNumber]



--
Rick B



Joe C said:
I am trying to take a date field and a text field and combine them to
make
a
third field , which would be an Invoice number. The problem I have is
the
date field comes over with the slashes. I need them in the original
display
of the date and not in the invoice number.

Thanks for your help.
 

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