hello last week i asked for some code to seperate datafrom one field into three new fields i had some code posted which works great it was:
Me.Cardnum = Left(Me.Text12, 16)
Me.Expirydate = Mid(Me.Text12, 17, 4)
Me.Startdate = Right(Me.Text12, 4)
please could you add to this and tell me how i...