Hi!
I have two SP List:
Master List (Title, Project description, ID)
Item List (work task, project type, MasterID <- which refers to the ID of the Master list)
I created an app to create new work packages which multiple work tasks and used gallery for it. I used this video for it: https://www.youtube.com/watch?v=xgznk4XlPCo
So to create a new collection and to get from the start screen to the „new work package screen“ I took his formula for my button:
NewForm('Form new work package');;ClearCollect(Items; {LineTätigkeitBezug:"";LineProjekttyp:""});;Navigate('Screen New work package';ScreenTransition.Cover)
This work perfectly to far and I am on my new work package screen and a new collection is called items is available. In this screen at the top I put the editing form „form new work package“ which has the columns of my SP Master List as database. Below that I put my gallery which has my collection „items“ as database:

I set the default value of the text input fields in my gallery as following:
Text input work task: ThisItem.LineTätigkeitBezug (named InputTätigkeitBezug)
Text input project type: ThisItem.LineProjekttyp (named InputProjekttyp)
I also put a save button in my gallery:
Save button (also creates a new row): Patch(Items; ThisItem; {LineTätigkeitBezug:InputTätigkeitBezug.Text; LineProjekttyp:InputProjekttyp.Text});; Collect(Items; {LineTätigkeitBezug:""; LineProjekttyp:""})
So when I want to run through my app and want to add new work task it works perfectly.
The only issue. I want the columns „Tätigkeit/Bezug“ and „Projekttyp“ to be choice columns in my SP list. How can I integrate this in my gallery?
Thank you very much!
Jasmin