I have a Sharepoint List DataSource called Census.
I used a guide to create a nested Gallery: https://www.clinkitsolutions.com/academy/creating-gallery-sections-using-subgallery/
I use a Flexible Height Gallery called gallHosp with Items set to:
GroupBy(AddColumns(SortByColumns(Filter(Census, Lower(TextSearchBox.Text) in Lower(OwnerMD) ||Lower(TextSearchBox.Text) in Lower(Lastname) || Lower(TextSearchBox.Text) in Lower(Firstname) || Lower(TextSearchBox.Text) in Lower(ClinicalText)), "Hospital", [Concat(Hospitals, name & ", ")]), "grpHosp", Hospital), "grpHosp", "Items")
I have a nested fixed height Subgallery called gallHosp with Items set to:
ThisItem.Items
Within the subgallery I can reference Data like:
ThisItem.Lastname
Also in this subgallery, I have a right arrow Icon: originally set to:
Select(Parent); Navigate(DetailsScreen)
My DetailsScreen DetailForm1.Items is updated to gallHosp.Selected
But this setup show blank details, so my question is how do I select/reference the item properly so it links appropriately into the DetailsScreen?