Hi,
I'm trying to do something that I thought would be simple enough, but apparently it isn't! I have an app with an image gallery that is loaded from a collection to avoid any delegation issues. From that app, users can share photos with colleagues via email. At the minute it sends them as attachments within the email but now some of the file sizes are getting too big so I have to change it.
I have a flow set up which sends a link to the app with the IDs of the photos added onto the end of the link to the app as a URL parameter. Whenever the user clicks the link it takes them to the right page but I'm having trouble then filtering the gallery by the IDs. The IDs are separated by a comma so I know I need to use the split() function to split them up, I thought I could do something like ClearCollect(AllItems,Filter('Sharepoint library', ID in Split(ListIDs,",")) on screen visible, then reference the collection in the gallery but it doesn't seem to work.
I feel like I'm missing a step somewhere, can anyone help?