Mar 01, 2024 02:10 PM
Hi,
I've got a scenario i'm trying to solve with the interfaces...
To give you some background information: i'm working a a project which involves taking care of incoming documents: tag them with info like sender, assign them to the correct project and type of document (bill or letter), amount to pay, etc
I created a table called "Document", a table called "Sender" and a table called "Project".
I created an interface which has a record view on the document table, which filters all "untagged" documents.
When you click on a document from the record view... fill in the sender and the project... one should see a list of recent documents that have the same sender and project... in order to detect potential doubles (=same document sent twice). Is this doable with the current interface?
So in short: I select a document, i identify "Sender B" and "Project 12"...
I expect to see on the same page... ideally all other documents that are from "Sender B" and "Project 12"... worst case only a list from "Project 12" are shown.
Solved! Go to Solution.
Mar 02, 2024 01:38 AM
Hmm, the only way I can think of showing all the documents linked to the same Project and Sender on the same page involves an automation with a helper table:
The idea is that you set the Sender and Project for that Document, then when that button is clicked an automation runs that'll look for any Document records with the same Sender and Project, and link it to a helper record. That helper record is always selected via a Record Picker element within the same Interface, and we add a grid element to display all the linked Document records to it
The downsides to this are that:
1. It's kinda clunky
2. Only one person can really use this system at a time
3. You'd need to click it every time you were identifying a document
4. When you identify a new document and haven't set any project or sender, it'll be displaying the related Document records to the previous Document you identified and triggered the automation for
---
If you're okay with your worst case scenario of only showing documents from the linked Project and not showing it on the same page, you could just dump a Grid into the record details though, which seems far simpler at the expense of seeing everything instead of only the ones related to this sender:
---
Showing everything on the same page would require you to add some kind of record picker element to your Interface I think, which means that you'd need to link the Project once, and then select that project again via the record picker element so that you have a Grid element showing all the documents linked to that Project. Just using the record details popup seems easier imo
Mar 01, 2024 07:01 PM - edited Apr 15, 2024 04:19 PM
Sure, you can add linked record fields to your interface and “drill down” to deeper levels, so you can click on a linked record and see more information about that particular record, including its own linked records.
Hope this helps! If you’d like to hire an expert Airtable consultant to help you with anything Airtable-related, please feel free to contact me through my website: Airtable consultant — ScottWorld
Mar 02, 2024 01:38 AM
Hmm, the only way I can think of showing all the documents linked to the same Project and Sender on the same page involves an automation with a helper table:
The idea is that you set the Sender and Project for that Document, then when that button is clicked an automation runs that'll look for any Document records with the same Sender and Project, and link it to a helper record. That helper record is always selected via a Record Picker element within the same Interface, and we add a grid element to display all the linked Document records to it
The downsides to this are that:
1. It's kinda clunky
2. Only one person can really use this system at a time
3. You'd need to click it every time you were identifying a document
4. When you identify a new document and haven't set any project or sender, it'll be displaying the related Document records to the previous Document you identified and triggered the automation for
---
If you're okay with your worst case scenario of only showing documents from the linked Project and not showing it on the same page, you could just dump a Grid into the record details though, which seems far simpler at the expense of seeing everything instead of only the ones related to this sender:
---
Showing everything on the same page would require you to add some kind of record picker element to your Interface I think, which means that you'd need to link the Project once, and then select that project again via the record picker element so that you have a Grid element showing all the documents linked to that Project. Just using the record details popup seems easier imo
Mar 02, 2024 02:51 PM