Re: connect every Gallery Item to a different screen
Hi @BakingBread,
No worries, let's take a look at the changes needed together. When you want to create a table that lives in your Power App, you use Collect (or ClearCollect). The function expects 2 parameters: (1) a table/collection name and a record/table of records.
The German syntax is indeed slightly different to the US version, so I will use your syntax instead. I adjusted my code to your example so feel free to copy-paste it into the App.OnStart.
ClearCollect(
colIDs; //This is the collection name (remove 1;2;3 from your example - it only expects 1 text input / name)
{
ID: 1;
Screen: Screen2
};
{
ID: 2;
Screen: Screen3
};
{
ID: 3;
Screen: Screen4
}
)
To run the OnStart in the editor, select the 3 dots next to App and click run onstart:

Note: when you 'play' the live version of the app (or reopen the editor), the OnStart will run when the application is opened. Only in the editor will it require a 'manual' action first (when you edit it).
ColIDs will be the Items property of your gallery and use the following Navigate function: Navigate(ThisItem.Screen)
I hope this helps! 😊