Format Query

  • Thread starter Thread starter ANDY
  • Start date Start date
A

ANDY

I have this in a query, which works fine

barcode: "RTA/CG/" & [ID] & "/" & [DATE]

My question is - how do i format the date to just display
the last two numbers of the year.

Thanks

Andy
 
ANDY said:
I have this in a query, which works fine

barcode: "RTA/CG/" & [ID] & "/" & [DATE]

My question is - how do i format the date to just display
the last two numbers of the year.

barcode: "RTA/CG/" & [ID] & "/" & Format([DATE], "YY")
 
thanks
-----Original Message-----
ANDY said:
I have this in a query, which works fine

barcode: "RTA/CG/" & [ID] & "/" & [DATE]

My question is - how do i format the date to just display
the last two numbers of the year.

barcode: "RTA/CG/" & [ID] & "/" & Format([DATE], "YY")

--
I don't check the Email account attached
to this message. Send instead to...
RBrandt at Hunter dot com


.
 
Back
Top