I have a field in my table called [Capture ID]. This field is formatted as text when the table is imported from another system, but is always contains a nine-digit Integer, and I want to change the data type. I was attempting to do it in a make-table query, like this:
Format([Capture ID],"General Number")
This works, but access won't let me keep the name of the field. It changes the formula to this:
Expr2: Format([Capture ID],"General Number")
I attempted to work around the issue by changing it to this:
Capture ID: Format([Capture ID],"General Number")
But, alas, Access perceives this as a circular reference.
I don't really want to give the field a new name. Other queries are dependent on the current field name, and it would be a pain to update them.
I also don't want to change the format by editing the original table, because this problem is part of a process that has to happen regularly.
Format([Capture ID],"General Number")
This works, but access won't let me keep the name of the field. It changes the formula to this:
Expr2: Format([Capture ID],"General Number")
I attempted to work around the issue by changing it to this:
Capture ID: Format([Capture ID],"General Number")
But, alas, Access perceives this as a circular reference.
I don't really want to give the field a new name. Other queries are dependent on the current field name, and it would be a pain to update them.
I also don't want to change the format by editing the original table, because this problem is part of a process that has to happen regularly.