T
Tony Williams
I have a field that I want to populate each record with a consecutive number.
I'm trying to do this with an update query with this as the sql view
UPDATE Semita SET Semita.SEMITAREFNBR = DMax("[SEMITAREFNBR]","semita")+1;
However when I run the query the value of my field for every record is 1.
What am I doing wrong?
Thanks
Tony
I'm trying to do this with an update query with this as the sql view
UPDATE Semita SET Semita.SEMITAREFNBR = DMax("[SEMITAREFNBR]","semita")+1;
However when I run the query the value of my field for every record is 1.
What am I doing wrong?
Thanks
Tony