Move backward in a field that has not yet been entered

Discussions about CSEntry
Post Reply
Merlino

Move backward in a field that has not yet been entered

Post by Merlino »

I am in a field inside a roster and I want to go to the beginning of the roster (serial number) in the next occurrence to start entering a new occurrence and I have an error message: "Unable to reenter NUM(2,0,0)' target-item field is a never-keyed field.

if H = 1 then
move NUM(j+1)
elseif H = 2 then
endlevel;
endif;


how to go to the next occurrence by jumping in a field that has not yet been entered?
josh
Posts: 2403
Joined: May 5th, 2014, 12:49 pm
Location: Washington DC

Re: Move backward in a field that has not yet been entered

Post by josh »

You would first need to create the occurrence (the new row in the roster) using the insert function (see insert function in help). Once you have inserted it you can skip to it by doing a skip or move.
Post Reply