Leverage this space to unlock the power of Airtable formulas.
Recently active
Hi there! I’m trying to create a base to track employee clothing orders. Each employee, based on their title, gets a certain allotment of several types of clothing. For this example, say a manager is allotted 5 sweatshirts. If that manager wants to get 7 sweatshirts, they certainly can, but they would be responsible for paying for the extra two. Here’s where it gets tricky… If all sized sweatshirts were the same price, this would be pretty straight forward, but they aren’t. All sweatshirts over an XL have an upcharge (XXL adds $2.50, 3XL adds $3.50, and so on). I want to determine how much the manager would owe if we pay for the 5 most expensive items. Say the 7 values of the sweatshirts the manager chose are in an array… can I look at that array and only sum the 2 lowest value? Table set up: [Clothing Standards] determines what title gets what allotment [Items] holds all Clothing items, sizes, and prices [Clothing Orders] links to both [Clothing Standards] and [Items]. It counts how m
I have 2 date fields. A ‘Book in’ and a ‘Book out’ that logs the date and time someone shows up to work and leaves. Then I use DATETIME_DIFF({Book out}, {Book in}) to get the total hours worked. Is there a way to also calculate over hours. If working past 6pm then anything after 6 would calculate as over hours?
Hello Everyone, I am trying to apply some logic to some of my fields that get automatically filled by a web hook API by Zapier. For instance, when one of our staff submits a form, the data will be sent to Airtable and then a sequence of actions will happen. My question is this: how can I get a value of one field to change the parameters of another? I.e. if field 1 labeled “Service Type” contains Google Ads, I want field 2 labeled “Team Group” to automatically assign a tag called “Search Team”. Basically, if “Google Ads” then “Search Team”. I just don’t know how to correlate this formula because there are multiple selections for field 1 that would all need different ‘answers’ from field 2… if that makes sense. Please let me know if you can help my situation! Best M
I’m having problems suppressing extraneous comma delimiters when trying to combine multiple fields into a single column of values separated by commas, but showing no comma if any of the combined fields are blank. I tried various combinations of this formula to no avail. IF({Racer 1 Full Name},{Racer 1 Full Name})&IF({Racer 2 Full Name},", "&{Racer 2 Full Name})&IF({Racer 3 Full Name},", "&{Racer 3 Full Name})&IF({Racer 4 Full Name},", "&{Racer 4 Full Name})&IF({Racer 5 Full Name},", "&{Racer 5 Full Name}) The above formula yields the following output: The above example is trying to place 1 to 5 names in a single field separated by commas, if the name field being combined is blank, there should be no comma separator. Note, there is always a Racer 1 name so no need to suppress on that field, just on Racers 2 through 5). Thanks for any workarounds offered. Not sure if I’m missing something simple here or not and confused why the basic IF statement is not
I got a field that summarises some numbers with some text. One of the numbers needs to be rounded to a with 3 decimals so I wrap the number in ROUND(), but it only gives me a precission of 1. 'Total weight: ’ & ROUND({Total Weight},3) & ‘kg’ Gives me: ‘Total weight: 0.8kg’ But looking to get: ‘Total weight: 0.800kg’ What an I not getting?
Hi everyone! I’m creating an integrated content + social media calendar for my team. There are two tables: Editorial, for website content Social, for social content On the Social table, each record has four “Copy” text fields for each social platform. What I’d like to do is create a field which does the following: a) If any “Copy” field contains text, display the relevant social platform name. b) If the above returns multiple values, concatenate the string with ", ". I’ve tried this formula, which works for a single entry / satisfies condition a): IF({Twitter Copy} != "", "Twitter") How would I go about creating a formula which satisfies both a) and b)? Thank you very, very much in advance. :orange_heart:
I have a database of exercises and am trying to classify types of exercises. For example, Barbell Squat and Bench Press = Weights, while Running and Stair Master = Cardio. The problem that I’m having is with OR statements. I want to say something like this: IF {Exercise Name} = OR(Bench Press, Squat), “Weights”, "Cardio) I’ve tried about 100 different ways to do this and am always getting incorrect results. I’m basically trying to group exercises by muscle group so that I can graph different sets of data. Any and all help is appreciated. Thanks!
Building a budget and I’ve searched for 2 days on this formula and now realize, its time for help. I have my paycheck weeks listed but I want to group by month - I’ve added a new table labeled Month to convert (using a formula) the dates to the corresponding month. For instance… 1/4/19 would be January 2/15/19 would be February 4/5/19 April and so forth. Thank you in advance for your help.
Hi Folks, I’m creating a research repository and want the primary field to be a concatenation of the value of a particular field in a linked table. Right now, it seems, that you can only access the primary field when making these links. Is there a way the value in another one of the linked records fields to show up and be accessible? Thanks!
I am new to AirTable and am not sure how to create a formula for a specific function I need. I am using a base to track involvement of triathlon team members in our club. Each event they participate in (team workouts, races, volunteer events, etc) awards them a particular number of points… referred to as DOTS. At the end of the year, their total dot count determines the monetary reward they get to use toward new team racing gear. I created a table that includes each MEMBERS of the team. I created a table that lists each EVENT. I created a table that lists each category of event and how many DOTS are earned for that event. To use the base… first I entered all the team members’ info. Each week I enter the events that earn dots. One column allows me to chose the type of event from the EVENTS table. I also have a column where I manually enter the number of dots earned for that event. Then is the column where it connects to the MEMBERS and I choose each person that was there for that event.
Hello! Could you help me with a formula? We’d like to archive everything with a date in the past. Right now, we’re checking a box that then causes the entry to filter out. Is there a way to automate this? I was thinking an If statement (If the publication column’s date is prior to the current date, check the archive column), but I can’t figure out the exact language. Thanks!
Hello! I have a table with 4 sheets. 2-4 sheets collecting data 1-shets columns with lookup from 2-3 sheets, BUT i need latest entered data from 2-3 sheets and then calculate from columns Here is tables Airtable Customer credit limits - Airtable Explore the "Customer credit limits" base on Airtable.
Hello, for context I am creating a form that will be shared publicly, that will be shared widely, where the names of people will also be able to be seen in a public view (it is for a petition). I am afraid of people writing inappropriate/joke names and would like to catch as many as I can with an if statement that would turn them blank in this public view. I am not sure how to go about this exactly especially since I know the case matters. For instance IF(OR(Name=“Jesus christ”,Name=“Jesus”),Blank(),Name) is there a function i can use that disregards case and/or just searches the string for certain inappropriate word? Thanks
I’m trying to work out some hire prices using a formula, where the weekly cost of item is used to calculate the daily cost of it. I have an item that cost me £1000, and I have decided that the weekly hire price is this figure divided by 10, so £100 a week. The daily price is calculated by dividing that by 3, so £33.33. However, I want the spreadsheet to round this up to £33.50. How do I use the ROUND function to do this? At the moment I have: Weekly cost = {Purchase Cost}/10 Then, daily cost = {Weekly Cost}/3 For both, I want it to round to the next 50p. Thanks!
I’m doing a survey asking users to rate features on a scale of 1 - 5 using the single select data type. However, the responses are strings like Very happy, Happy, Neutral, Unhappy, and Very Unhappy. I need those values to correspond to numerical values like “Very happy = 5”.
What causes this error to happen? See first comment for the table. Formula here: IF({Premiere - HKT}="",“N/A”,DATETIME_FORMAT({Premiere - HKT}, ‘dddd’))
I recently discovered that when I multiply 6.1 * 3, and convert the product to a string using product & “” the result is a string with repeating decimals, even though the numeric result is simply 18.3. This is actually causing a serious problem in my table when formatting prices for invoices. Any insight is appreciated, thanks!
I made this formula that tells me when it has been 5 days since my last contact with a client IF(DATETIME_DIFF(TODAY(),{Last Contact},‘days’)>5,“Overdue”,“Ok for now”) and it works perfectly. There are some clients that I want to follow up with weekly, monthly, quarterly etc ! Now what I want it to do is look at my contact frequency column and if someone is tagged as weekly then say overdue after 8 days, if they are bi-biweekly say overdue in 15 days, if they monthly say overdue in 35 days etc etc. Any ideas on how I would do that.
Hi There I was hoping I could get help on linking 2-tables that are within the same base. I have a table called “List” and this table has fields which consist of PO #, Accounts & Shop Order #. On another table “Invoicing” which is populated with a variety of fields including PO #, Accounts & Shop Order #. Is there a way to link the PO #, Accounts & Shop Order # fields from the “List” table to the PO #, Accounts & Shop Order # fields on the “Invoicing” table? Basically if I populate the PO #, Accounts & Shop Order # fields in the “List” table then the PO #, Accounts & Shop Order # fields from in the “Invoicing” table will automatically populate with the same information. Is this possible? If so can someone give me directions on how to do this? Thanks so much.
Hi, I am using Airtable in combination with Zapier Zapier generates a record in my master table with a start and end date. Those dates can be 1) within the same month, 2) across two to many months, 3) over a new year. I would like to log for each record, how many dates are within each month within the given date range. E.g. 1) 3/5/19 - 3/10/19 should return 5 days in month 3 2) 3/5/19 - 5/2/19 should return 26 says in month 3, 30 days in month 4, 2 days in month 5 3) 12/29/18 - 1/3/19 should return 2 days in month 12 2018, 3 days in month 1 2019 The reason is that I want to calculate occupancy per year/month across multiple master table line items. Any thoughts?
Hi There Looking for help with a formula. I have a column (Inv Date) that is populated with Invoice Dates. I have a 2nd column (Payment Received) which has a multiple select list consisting of Paid, Courtesy, Consignment, Credit or it is blank meaning no payment has been received yet. In a new column (Past Due) I would like to create a formula whereby if the (Payment Received) column is populated with Paid it will then populate the (Past Due) column with Paid. If the (Payment Received) column is blank then it will populate the (Past Due) column with however many days it is past the invoice date. Please can you help. Thanks so much.
I have an Autonumber Column, I’d like to create a Formula that combines each Autonumber + a string “M” Formula “M” + {Autonumber} Intended Result “M1” Current Result NaN Thank you
I am trying to put a formula in Airtable that would calculate the difference between two times and give me the result in quarter hour increments. I would import the data as follows from a spreadsheet: Name Start Date End Date Start Time End Time Calculated Difference between two Doe, John 3/1/2019 3/2/2019 8:45 pm 7:00 am 10.25 Hours Smith, Jane 3/1/2019 3/2/2018 8:35 pm 7:00 am 10.25 Hours (Rounded to 8:45 pm) What would the formula be for the calculated duration because my payroll company is set up the enter into quarter of hour increments. Your help is greatly appreciated.
Hi There I have a column (Net Sales USD/CDN) that is populated with various mounts. In another column (Currency) I have indicated which of those amounts are USD currency and CDN currency. In a new column (Total Net CDN Sales) I would like to come up with a formula where it converts the USD currency amounts to CDN currency using a currency rate of 1.3 and leaves the CDN currency amounts as they are. Your help will be greatly appreciated. Thanks so much.
Hi! I’m trying to create a formula that extracts a keynumber from a string of text to add to a field in Airtable. The input is in some form like this: NB - 1720ENTHXXXXXAR - TTQ 1720 NEWSBREAK THURSDAY - 0:15 And the output should be: 1720ENTHXXXXXAR The problem I have is that the source doesn’t use consistent formatting, and the original string has an inconsistent amount of blank space characters all throughout, which I’m getting rid of using SUBSTITUTE(), and then using the MID() formula to grab the key number from the text with the spaces removed. This is my formula: MID(SUBSTITUTE({Input}," “,”"),4,15) However, there appears to be some inputs that aren’t fixed with the SUBSTITUTE() function, and as a result am getting an incomplete key. This, weirdly, is fixed by adding, removing or modifying a character anywhere in the original string. Here’s a sample base if you want to check the data. There seems to be some carriage returns in the original string, but Airtable should be conver
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.