expression help

G

Guest

Item Reference: "Date " & [Document Date] & " Amount $" & [Outstanding
Balance]
I have the above expression to populate a field in a table using an append
query. My problem is that the [Document Date] field is coming through in
mm/dd/yyyy format and I want it in mm/dd/yy format. The source table has a
format of mm/dd/yy. Can I have an example of an Input mask or Format for
this. Thanks for your help.
 
R

Rick Brandt

nathan said:
Item Reference: "Date " & [Document Date] & " Amount $" &
[Outstanding Balance]
I have the above expression to populate a field in a table using an
append query. My problem is that the [Document Date] field is coming
through in mm/dd/yyyy format and I want it in mm/dd/yy format. The
source table has a format of mm/dd/yy. Can I have an example of an
Input mask or Format for this. Thanks for your help.

Item Reference: "Date " & Format([Document Date], "mm/dd/yy") & " Amount $"
& [Outstanding Balance]
 
G

Guest

Thanks works great. This is exporting the data to a field that is used to
give more information only.

tina said:
try

Item Reference: "Date " & Format([Document Date], "mm\/dd\/yy") & " Amount
$" & [Outstanding Balance]

btw, hopefully you have a valid business reason for storing two data
elements in a single Text field in your table; if not, you may want to
reconsider doing so.

hth


nathan a said:
Item Reference: "Date " & [Document Date] & " Amount $" & [Outstanding
Balance]
I have the above expression to populate a field in a table using an append
query. My problem is that the [Document Date] field is coming through in
mm/dd/yyyy format and I want it in mm/dd/yy format. The source table has a
format of mm/dd/yy. Can I have an example of an Input mask or Format for
this. 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

Similar Threads


Top