Hi @NSWIFT92 ,
Do you want to navigate within a screen?
Firstly, please do not use Navigate function in your issue.
Navigate function could only navigate to different screens.
I suggest you use SetFocus function.
It could move input focus to a specific control.
Please notice that it could only move focus to an input control, like textinput, drop down,....
Control like label is not supported.
I assume that you have textinputs in each of the card.
You could set button1's OnSelect in card1:
SetFocus(TextInput2)
set button2's OnSelect in card2:
SetFocus(TextInput3)
..
Then if you click button1, you will jump to card2.
If you click button2, you will jump to card3.
Best regards,