Can end users switch between text fields with "enter"

Hello,
Is there a way for end users to switch between text fields by pressing enter rather than selecting the field. Background information: I have a set of of ordered text fields and users must enter a number from 1-50 in each. It would be nice if the user could enter a value in the first text field and then press enter to move to the next field, as in excel. Is there a way to do this?
Any help is much appreciated!

I have now solved this one myself. The key word is “focus()”. Code below with “input14” and “input3” the specific text field names to my problem.

export function input14_keyPress(event) {
//Add your code for this event here:
if (event.key === “Enter”){
$w(“#input3”).focus();
}
}

Usually pressing the TAB key on a standard keyboard will bring the user to the next available input box on websites and software packages.

While pressing SHIFT+TAB will bring the user to the previous input box.

That’s helpful to know, thanks.