âScroll to entryâ is a scroll action⌠(i.e. itâs for actually âscrollingâ to a position in a repeating group that contains a number of entries)âŚ
If I understand your question correctly, youâre not trying to actually âscrollâ to anything here, you just want to display the details of a particular Medal from the first RG in the second RG, yes?..
So thereâs no need to use a âScroll to entryâ action (you only have 1 entry on your RG, so scrolling to an entry wonât do anything, as youâve discovered)âŚ
Firstly, is there a particular reason youâre using a RG to display the medal details? (it only has 1 cell, so a regular group would be simpler)âŚ
If you use a regular group in stead of a RG all you need to do is use a Display data action to display the relevant medal details in the group.
If you insist on using a RG, itâs slightly more complex⌠youâll need to change the datasource of the second RG to display only the selected item from the first RGâŚ
There are a few ways to do thatâŚ
You could set the RG datasource to be the current cellâs medal, converted to list.
You could set the RG datasource to be get all medals, filtered, then use a constraint to match the medal to the current cellâs medalâŚ
You could set the RG datasource to be get all medals medals, item number: current cellâs indexâŚ
But, surely the simplest way is to just use a regular group instead of a RG and use Display Data to show the current cellâs Medal (unless thereâs some particular reason youâre using an RG here, or something else Iâm missing)âŚ