Connecting Tech Pros Worldwide Help | Site Map

How to convert Date to String

galsaba
Guest
 
Posts: n/a
#1: Nov 13 '05
I created a form with the following fields:

ID (AutoNumber)
Date (Date / Time)
Name (Text)

I want to create a query that will take
the first letter of the Name & Date & ID & last digit of the ID.

Thanks,

galsaba

David Seeto via AccessMonster.com
Guest
 
Posts: n/a
#2: Nov 13 '05

re: How to convert Date to String


Left(Name, 1) & CStr(Date) & CStr (ID) & Right(CStr(ID), 1)

--
Message posted via http://www.accessmonster.com
Closed Thread