Hello,
I have set up a SharePoint online list with multiple columns. Now I want to make an app using PowerApps to write data to these columns. But not in traditional forms, but by navigating through screens and pressing buttons.
The situation:
SharePoint list columns: Cabin; Material; Type; Color (there is actually a bunch more, but for reference this is enough)
Screen 1: 3 buttons labelled: "Cabin 1", "Cabin 2" and "Cabin 3"
Screen 2: 4 buttons labelled: "Wood", "Metal", "Concrete" and "Brick and mortar"
Screen 3: 3 buttons labelled: "ABv6", "mBvK1" and "mBvK2"
Screen 4: 5 buttons labelled: "Yellow", "White", "Black", "Blue" and "Red"
I want to navigate through the screens by clicking these buttons, and on click (or final click) also store data to SharePoint.
So on button "Cabin 1" I want OnSelect:Navigate(Screen2;None;{Cabin:button1_1.Text}), and I also figured out how to use the Patch command in the last screen to save all data to SharePoint. what I can't figure out is inbetween the first and last screen. How do I hand over the value for variable Cabin (which is from screen 1) from Screen 2 to Screen 3? And so on untill the last screen (which is Screen 22).
Any help is greatly appreciated!