Hello @Techy1234 ,
If you want a single screen and single form with the next button then try setting a variable on that button click like below
Suppose your form as 10 fields , f1 to f10
F1 - f4 : visible by default
f5-f7: button 1 click
f8-10:button 2 click
Then screen Onvisible set 2 variable : Set(button1,false);set(button2,false)
Visible property:
F1 - f4 :true
f5-f7: button1
f8-10:button2
Onselect of buttons:
button 1: Set(button1,!button1)
button 2: Set(button2,!button2)
So it has buttons as well as single form and screen.
Thanks
If this post helps, then please consider Accept it as the solution to help the others and consider giving it a "Thumbs Up."