I can and probably should but I won't.

You'll learn a whole
bunch more by using Help and other resources at your command.
The big clue in the pseudocode that I suggested is the DMax()
function. It's a real Access function. You can look it up in Access
help and learn to use it.. It's a Domain Aggregate Function. There
are a few of them. They are useful. They are succinct and their
syntax gives some people grief.
In Access as in other programming environments, nothing exists in
isolation. Sooo... At the point where you are going to create a new
what-ever-it-is-that-you-are-sequencing, find the maximum value in the
sequence number field, add one to it and write that number into that
field in the record for your new thingy. To paraphrase:
MySequenceNumber = DMax(MySequenceNumber) + 1
The real syntax is, of course different. and I don't know the names of
your relevant table and field.
If you haven't already done so, please visit
www.mvps.org/access
HTH