I have a Primary Key that I need to append to by using a increment counter of sorts. Example; EventID is 30 I then want to append to the same table that has this EventID but add a record with .1 to it so that the new EventID would be 30.1 and the next would be 30.2 and so on.
[EventID]+.1 And [Forms]![frmmissedevents]![EventID] I have this is a query grid to try and accomplish this, will this work?
I will have several records in the table I am appending from with the SAME EventID
I am using a form and append qry to try and accomplish this. I have a table with missed events that did not take place and need to add them back in but keep all of the original data except to update the dates, check number and some yes/no fields.
For each missed event in my table I run the append query to modify the table tblEvent
Example: Also needed is: Let's say my PK is 30 (EventID) and I want to change the below
tblEventID EventID is PK
MyDte Check Date
EventStart Date() also used as check date
ChkNo Greatest Check Number
Let's say also that for ALL other EventID that are 30 I just need to increment the EvenID by .1 so it will be 30.1 and advance from there.