How can I generate a PDF in AppSheet using the platform's default search and filter functionality to capture the currently displayed, user-filtered data?
I'm currently working on an AppSheet application and have implemented the platform's default search and filter functionality to allow users to filter views based on their needs. Is there an option where, after filtering the data, users can generate a PDF of the filtered results directly from the current view.
Has anyone tackled this before? I'm trying to find a way that doesn't involve multiple steps or external integrations, aiming for a seamless user experience. Any advice or pointers would be greatly appreciated!
Solved! Go to Solution.
So there are 2 ways I use, neither simple ๐
Option 1
So process will be - user goes into view, filters list, clicks button to flag all records, navigates to and clicks action button to run bot
Option 2
Select(Table[TableID],AND(
[County]=[_ThisRow].[County],
...
...
)
)
<<START: [Matching Records]>>
Hope this helps
Simon, 1minManager.com
For anyone still looking for a good way to solve this, I've had a YouTube video up for several years now that will walk you through how to solve this.
Over the years I have found that it's best to create a dedicated table to perform this function, as AppSheet generally works better when it has a "thing" to work with when it's doing something. By building a report table, and generating a record in that when we want to make a report, AppSheet has a thing that it can work with and we can use as a central place for processing and whatever. (All explained in the video)
It's always depressing to me that these videos have been out for so long, yet nobody seems to be able to find the answers. ๐ The answers are literally right there, yet nobody finds them. Anyways....
Hope it helps!
User | Count |
---|---|
18 | |
11 | |
11 | |
8 | |
4 |