I am tring to create a PO number such as R-010205153024
(month,day,year,time-militray time,second).. for each added entry into a text
box associated to a table, How do I do this?
Marshall Barton - 05 Mar 2005 22:22 GMT
>I am tring to create a PO number such as R-010205153024
>(month,day,year,time-militray time,second).. for each added entry into a text
>box associated to a table, How do I do this?
Make the Field in the table a Text type field. Set the
DefaultValue property of the text box on the form to:
"R-" & Format(Now(),"mmddyyhhnnss")

Signature
Marsh
MVP [MS Access]