Passing ID return multiple Rows

Hi, Everyone.

Good day.

I just want to ask, how to pass a keyID on another view, so that when the new View is loaded on the screen it will show only the records based on the keyID passed from the previous view.

Scenario: When clicking a specific SectionID in the current view, the next view came up with the list of Students currently enrolled in that section.

- List Of Section View (table columns):
SectionID | Section Name

- List Of Student VIew (table columns):
SectionID | Student ID | Student Name


Thank you.

Solved Solved
0 5 107
1 ACCEPTED SOLUTION

Something like LINKTOFILTEREDVIEW("List Of Student",[SectionID]=[_THISROW].[SectionID]) if the "List of Student" is a name for your table view.

View solution in original post

5 REPLIES 5

One way is to create an deep link action with the LINKTOFILTEREDVIEW() as you can read values from this row.

thank you.
Here are the possible steps:

1. On "List Of Section View" will create an action "LINKTOFILTEREDVIEW()" to read the values from this row.

2. On "List Of Student View", how this view can identify what Id needs to filter in a database?



Scenario: When clicking a specific SectionID in the current view, the next view came up with the list of Students currently enrolled in that section.

- List Of Section View (table columns):
SectionID | Section Name

- List Of Student VIew (table columns):
SectionID | Student ID | Student Name

Something like LINKTOFILTEREDVIEW("List Of Student",[SectionID]=[_THISROW].[SectionID]) if the "List of Student" is a name for your table view.

Thank you so much for your quick reply AleksiAlkio.

You're welcome!

Top Labels in this Space