Hello!
I’m building a dashboard for account managers to find and contact their accounts. The desired flow is the user gets a paginated list of accounts, which they can filter with controls. They will select one or more accounts from this list, then have the option to export the list to CSV or a third party application which they’ll use to contact those people. I’ve successfully built some portions but need assistance with others.
The dataset structure is one row per account with fields for account id, name, contact info, account type, and other attributes.
I was asked to use checkboxes to select rows accounts, but it doesn’t appear that is an option yet.
So far I’ve successfully built:
- main table for all accounts, which populates the second table with records that were selected from the main table. How can I select multiple lines from a table? (and how could I then DESELECT those items to exclude them form the analysis?) - #6 by darcoli
- conditional formatting to highlight rows in the main table that were manually selected.
- Defaulting the second table to show all records until one is manually selected to avoid “no data”. How can I select multiple lines from a table? (and how could I then DESELECT those items to exclude them form the analysis?) - #11 by Antonio
- A reset button to deselect all rows. Adding a reset button for on all sheet filters - #2 by Brett
I need assistance with:
-
select all records so that the user can deselect/exclude individual records. If they have 100 accounts but only want to select 98 of them, they shouldn’t have to click 98 times. They should be able to select all and deselect the 2 they don’t want.
-
select all from filtered records. for example, if I filter the main table to account type = basic, I want to be able to click something that selects all of those those accounts after the filter, not all the records of the unfiltered table.
-
on-dashboard feature for the user to export to CSV, not clicking the menu in the upper right of the table.
-
on-dashboard feature for the user to export to a third application/database. Is this what the API is for? I’m asking about a way to choose to click to export to somewhere else that’s not downloading on your machine.
Thanks for your help!


