Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I have 2 tables in my App
Hospital_1:
Name,
Address ,
beds
;
Hospital_2:
Name ,
Address ,
beds
;
I have to create a sheet Where I can add filter on Table name to show the data from the tables. How do I add Table names in the Filter pane
TIA
Madhura
Dear Madhura,
You can add a New field in both the tables like a Flag.
Hospital_1:
Name,
Address ,
beds ,
'Hospital_1' as Hospital
;
Hospital_2:
Name ,
Address ,
beds ,
'Hospital_2' as Hospital
;
and Use the Hospital field in the front end to filter the data from the tables.