I have a SharePoint list, where I'm letting people search. There is a button they can use to navigates to a different screen that will surface 1 random item from the list. That screen is generated by:
FirstN(Sort(AddColumns ('Data Source', "Random", Rand()), Random), 1)
When I'm on the Random Screen and I pick the > to edit or view the list item, it goes to a different list item! I've tried both:
Navigate([@DetailScreen1])
and
Select(Parent)
Does anyone know where I've gone wrong?