Builders Board
Recently active
The other day a friend of mine watched as I imported 7,000 support tickets from Jira into Airtable and then auto-tagged them in less than a minute. He was amazed; I was yawning. I suppose it’s a pretty cool thing, but we often get good at something(s) and forget about how much time they save and possibly how much more useful the data becomes when we attend to the seemingly little things like consistent keyword tagging through automation. I use my Airdrop framework to do this - it’s a simple script management system that allows me to use ordinary javascript functions in Google Apps Script (or in Airtable) to perform acrobatics on Airtable data and all without setting up a new API app every time I need a new API process. But I think you can also do this through Zapier, Integromat and your own API code of course. Airdrop allows me to frame an API process in a pseudo-code script like this: Once this script is made “active”, Airdrop will run this function passing the support Titles field
We are looking for a US based AirTable expert who can do simple one-off fixes (hourly work) from time to time. Our base has already been built out pretty extensively, we just need a little extra help with some things that are beyond my expertise. We do have some Zapier integrations but nothing too complex…just a little too complex for my brain. :winking_face: Thanks for your consideration. Best Regards, Dominic Menard
Hey Everyone, The Airtable community is among the most dynamic and fast-growing communities in the no-code space, and there are many members producing and sharing educational content, tips, or news on Airtable or just offering related services. We have selected the top (in our opinion) experts in the field who are worth following. Check it out and let us know who else would you suggest to be included in the list. Cheers, Narek
Hi everyone. I’ve just released Air Publisher, a free RapidWeaver stack that can be used to Web publish data stored in Airtable databases. With Airtable, RapidWeaver, and Air Publisher, you can easily create modern, responsive, database-driven Web sites without writing a single line of code. A demo video and other resources are available here: https://timdietrich.me/stacks/air-publisher/ Please let me know if you have any questions or feedback. Thanks, Tim
Hey AT family! Joel here from Paytable - the membership platform for Airtable. I’ve been making some exciting changes to the Paytable product page & widget, mostly an improved UX, a slicker horizontal layout and direct to payment links that use our new simplified pre-checkout page for improved conversion: Selling Airtable access has never bene slicker or more secure and you can embed this widget into your custom domain and test out how it will look in the new improved live edit builder: Embed the new members area login and access onto your domain As part of this recent upgrade you can now easily embed the widget, login and members area into your own domain in seconds. It literally is just a case on inputting the url into your settings in Paytable and embedding the widget with one line of code. You can also use this on 1 page sites like Carrd too with clear setup instructions of course. Things are ALOT clearer in the brand new dashboard if you fancy giving it another spin. I’ll
Hello! Black Valley Films is looking for an experienced Airtable consultant to help us build out our company in Airtable. We need help organizing different documentary project databases, as well as connecting these with databases for Finance, Production, Development, and a contact list. We prefer to hire someone who is familiar with the film industry. Please reach out to me at vp@blackvalleyfilms.com if you’re interested!
Hi! Kindly see the above video, it explains everything briefly what i need. I’m thinking of starting a business but I want to try and see if I can get the processes automated before even taking things forward. What I need is skeletal code to make the whole process work, and then from there I will tweak it and add in the various data fields, folders etc to make it a whole working code (I used to be a programmer, so I know there are so many things I don’t know and would prefer to have someone as expert as yourself to come up with the skeletal code first). I don’t want to use Zapier etc, just Airtable, Google App Scripts and good ole code. Thank you for your time reading this!!
I love airtable but just do not have the time to learn all its features. We primarily use a base for a contact management sheet for the people we interview. I sort of created this. But I will need help with a content calendar, need to make lists of my vendors and production crew we use. I am actively seeking help in other areas of my business specifically related to combat sports, so I need a base that helps me organize the applicants. I am sure there are other bases I can use and integrations I am easy to work with and WISH I HAD MORE TIME FOR AIRTABLE ~ as I am super organized but alas leave it to the pros. I am on est time susancingari@gmail.com
We need a contractor to help up build out some dashboards for high level analysis using Vega Lite or another app available within Airtable. Ideally scatter plots with rolling averages, breaking down data by views. Upwards of 30 graphs
I’m looking for some help on formulas and building automation sequences. Must be good with IF / Find / And / OR formulas for some immediate needs.
Our company uses Airtable as an interim repository for data to be scrubbed prior to loading in a MySQL database. Have information in multiple bases that needs to be merged and duplicates deleted. Thanks.
Hi, guys! I’m looking for someone to integrate a Zotero library to an Airtable base. Zotero is an app for organizing academic references. It provides a Web API (but no webhook), with detailed documentation. I’d like to sync my Zotero library with my Airtable base, so every time an item is added to my library, that same item is added to my Airtable base. Similarly, every time an item is deleted, the corresponding item will be deleted from my Airtabase base (although this feature is not so as important as the first one). I’m looking for someone who could write a script for doing that.
Hi Everyone, The no-code community (and the Airtable community in particular) is evolving fast, and there are already a lot of established experts writing on no-code trends, technologies, news, etc. Therefore, we thought it would be useful to compile a list of the most interesting (in our opinion) experts in the area that are worth following on social media: 100+ Top No-Code Experts You Should Be Following Should be helpful if you’re just getting into the no-code space or if you’re simply looking for new sources of inspiration and expertise. Cheers, Narek
There’s a ton of excellent tools for turning data in Airtable into websites. But how about the reverse - scraping data from websites into Airtable? After some good community feedback I’ve launched a direct Airtable integration on Simplescraper to help you do that. Choose a website to scrape, enter the details of the base and table where you want the data to appear, click run, and your data instantly appears in Airtable. Here’s a tutorial that scrapes jobs listings directly from Indeed into a base and it should work similarly on almost every website. I know people mentioned scraping LinkedIn leads and real estate listings and I’m sure there’s more use cases. Check it out and hope it adds value :v:
There’s probably an easier way to do this, but I was quite pleased with the solution I came up with. I’d be interested to hear what you think… I’m building an auditing tool composed of a large number of questions that can be answered Yes, No, or N/A. This needs to give an overall “score” as the final output, as a percentage, where questions for which “N/A” is selected aren’t counted towards the overall score, i.e. the score is calculated by the total number of questions answered “Yes”, divided by the total number of applicable questions. I set up a test version of this tool and filled in some results here. The “Score” field is worked out as follows: {Yes} IF({Q1}="Yes", "1", "") & IF({Q2}="Yes", "1", "") & IF({Q3}="Yes", "1", "") & IF({Q4}="Yes", "1", "") & IF({Q5}="Yes", "1", "") {Yes or no} IF(OR({Q1}="Yes", {Q1}="No"), "1", "") & IF(OR({Q2}="Yes", {Q2}="No"), "1", "") & IF(OR({Q3}="Yes", {Q3}="No"), "1", "") & IF(OR({Q4}="Yes", {Q4}="No"), "1", "") &
I would like to create an accounting system where different subjects after having scanned the QR code of the Seller could specify a certain amount, just a number, and transfer that ‘numerical value’ from his account to another For example: A scan QR code of B transferring 100 B scan QR code of C transferring 50 C scan QR code of A transferring 60 So each Subject has his own QR code and the software has to calculate the new balance of each Subject after each transaction Other features will be discussed later, thanks
Hey Everyone, As an active member of the no-code community, we at Softr always closely follow the developments within the no-code movement. Therefore, we’ve started a series of articles on no-code to share our thoughts and observations on different aspects of the no-code universe. The first one explores the evolution of no-code, its current developments, and future perspectives: The Past, Present, and Future of No-Code Let me know if it’s helpful and if you’d be interested in reading more similar content. Cheers, Narek
My new app “Ready-Made Formulas” is now available on the Airtable marketplace. This app includes over a dozen “ready-to-use” formulas for common tasks such as formatting numbers and dates as text strings to include in reports generating urls for prefilled forms and prefiltered shared views extracting attachment filenames and urls manipulating dates consolidating data from multiple fields into JSON format Simply choose your formula, pick your table and fields, and select your options. Then, copy and paste the formula into your formula field. Most formulas require a premium license.
We are looking for an individual who has an expertise with AirTable and can assist us with setting up reminders and a tracking system for our current account
Hi, I’m hoping to find someone who can help us create a custom calendar/ scheduling feature to keep track of our Digital advertising displays. Our digital screens have 8 slots at once and we’re hoping to find a way to schedule each slot for each of our locations months in advance so we know what is available to sell. Thanks!
International entertainment PR & Markting agency currently using Airtable is looking for a high end expert programmer to: review current airtable set-up propose changes to existing structure vs agency functionality requirements design new features in airtable for integration with Tableau for data visualization design client facing website to display data visualization
Looking for basic training on AirTable for a team of 12 - and for optimization of current bases.
The last time I looked at Coda and I put my suggestion about improvements for the Gallery view in Airtable: Suggestions for Gallery view (see Coda gallery view) Product Suggestions Here is a gallery view I would like to offer as an example of how Airtable could improve its gallery view design. The gallery view in Airtable looks great, don’t get me wrong, but there are at least a couple of things that need to be looked after e.g. Multi-line title (or other fields) Clean look (the less colours in the template the better, I want the content to stand out, not the template I know Airtable gallery design is adaptive and reduces number of columns depending on the screen size. H… Now I looked at Knack. I didn’t spend a lot of time because I found it’s not what I need, but here are my impressions. It’s a relatively new company I never heard of but seems interesting. They are taking similar approach as Coda in terms of the initial database design and and focus o
Hey Everyone, It’s been a busy month for Softr, and we have lots of new exciting stuff for you. Check out all the news, new features, and improvements below: :1st_place_medal: #1 Product of the Week & Day on Product Hunt :jigsaw: Softr 2.0 Use Cases - Client Portals, Internal Tools, Marketplaces, Communities, Resources & Websites New experience for you :tada: New branding, logo and a redesigned website :rocket: New dashboard area :gem: Redesigned Softr editor navigation New Features :bust_in_silhouette: Sign in and Sign up via Google (for your app users) :sparkles: Sign in via magic link (for your app users) ↔️ Define items per row in lists :label: Dropdown filter type for lists :rocket: Performance Improvements :date: What’s Next? Edit Information in Softr app (Airtable records) New Table view list block Payments in forms New redesign rollouts More performance improvements Details here: bit.ly/3gZW2or
After working with all sorts of Airtable users to get their bases connected to PowerBI, I wanted to provide a quick tutorial to the community in case you might be looking to connect Airtable to PowerBI as well. There are two ways to connect Airtable to PowerBI The Airtable REST API Using a service like the one I’m helping with → Sync Inc I’ll cover both here briefly: REST API These instructions pull together information across several posts here and here. Thanks to @Oscar_Diaz for getting this started - hope pulling this into one place can help. Retrieve your API key from your Airtable accounts page. Retrieve the your Base ID from the Airtable API Docs. Generate the API request to pull the data from your desired Airtable base and a specific table. Here is the basic format: https://api.airtable.com/v0/[BaseID]/[NAME_OF_THE_TABLE]?Api_key=[API_KEY] In Power BI, select Get Data and enter the properly formatted URL you just created Now, set up pagination so you can pull in more t
Already have an account? Login
No account yet? Create an account
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.