In this instance, I use Access to manipulate data, not create a normalized database. My problem is that everytime I run through my saved queries, I have to manually redo my last update query because the field name changes. The field name that changes always begins with "BRC" then followed by a 3 digit number. The 3 digit number changes. For example, today i might use "BRC123" and tomorrow I will use "BRC134" etc. Also, whichever 3 digit suffix i use, i put those 3 digits in the criteria. which i have done so already by referencing a form control value. FYI there are too many possible 3 digit suffixes to store, plus they change
Any way to concatenate the field name kind of like
in SQL...
or
in query design grid
or use a variable in the field name somehow?
Any ideas?
Thanks in advance
Any way to concatenate the field name kind of like
in SQL...
Code:
MyTable.BRC & forms!Myform.MyControl
in query design grid
Code:
BRC & forms!Myform.MyControl
or use a variable in the field name somehow?
Any ideas?
Thanks in advance