N
Nigel M
Part repost:
I had a success with the function I wanted, thanks for the help. I used
an update query as suggested to reset all the Yes/No values in a table
to No, and (if possible) add the current date for each change from Yes
to No into another field.
I want to incorporate a function onto a form to remove the first 11
characters from a given field in the current record, and put the first
10 of these into another field (which happens to be the PK).
In pseudo BASIC code, I need:
id_field = left(10, title_field)
title_field = mid(12, title_field)
Any suggestions? I don't think an update query is suitable, it is needed
in a live record, with no PK at the time.
I had a success with the function I wanted, thanks for the help. I used
an update query as suggested to reset all the Yes/No values in a table
to No, and (if possible) add the current date for each change from Yes
to No into another field.
I want to incorporate a function onto a form to remove the first 11
characters from a given field in the current record, and put the first
10 of these into another field (which happens to be the PK).
In pseudo BASIC code, I need:
id_field = left(10, title_field)
title_field = mid(12, title_field)
Any suggestions? I don't think an update query is suitable, it is needed
in a live record, with no PK at the time.