I have a form called "Backfill" that submits the data to a table called "Updated Headcount"
On the form there is an ID textbox that is unbound and a Notes textbox that is bound to the Notes field in Updated Headcount.
When the user types a value in the ID textbox, I want to concatenate "backfill" and the ID value to the Notes textbox. I then want that concatenation to submit to the Notes field in the table.
I've tried putting ="Backfill" & ":" & [ID] in the before and after update but nothing works. I can't put it directly in the Notes textbox because then it becomes unbound.
Any thoughts??