Below is the screenshot of a random Gsheet extract i made & want to display this data on the app.
I want each specific users to click on a ‘view invoice’ button & a small table appears which display their particular invoice and its amount against it.
How do I enable this function on Glide?
Note - My master data source is G sheets already linked to the app & already created a row ID for each users (the Row ID appears before the ‘Code’ column & cropped for obvious reasons)
What I’ve done one time, is when a user clicks that button, it opens a new screen with a relation.
So you have table 1 with you invoices.
Table 2 with your invoice items (or child-invoices, etc).
Create a relation from table 1 to table 2 based on the invoice number.
Then clicking on the button opens a new screen using the relation to table 2 and displays a collection table of all items related to the invoice from table 1.
I hope this helps. Is that what you are looking for?