Skip to main content
Solved

Default value for single select column?


I have a table where I want all new entries (rows) to have a default value for a single select column. Is that possible?

Best answer by Bridger_Maxwell

Good news, this launched as a feature today! Now you can set a default value on any single select field. 

View original
Did this topic help you find an answer to your question?

62 replies

Unfortunately, there’s not. Single Select is one of the many fields that currently do not have a default value option where one would be very nice. I believe there’s a #feature-requests addressing this out there already. You might consider looking it up and adding your support there.


Hi Karl


This is unfortunately the case - there is a possible solution (work around really) available to you by using Integromat or Zapier. Using either, you could watch for new records where this field is blank and fill it in. The only downside is that this wouldn’t be instant of course.


Hope this helps?


  • New Participant
  • 4 replies
  • January 21, 2019

I see there has been a feature request for this for several years!


Bump, this is something thats pretty important!


  • New Participant
  • 2 replies
  • March 7, 2019

There is a bit of a workaround that works for me. Group by the column you want the default value in and add new records in that group… for Example, I have a column called “Status”, every new record should default to “Planned”. After adding the Status column to the grouping, I now add new records under the “Planned” group.


  • New Participant
  • 1 reply
  • May 20, 2019
Zarian_Lewis wrote:

There is a bit of a workaround that works for me. Group by the column you want the default value in and add new records in that group… for Example, I have a column called “Status”, every new record should default to “Planned”. After adding the Status column to the grouping, I now add new records under the “Planned” group.


This is genius, thanks !!! Worked for me aswell and the view is much cleaner also.


  • Known Participant
  • 19 replies
  • June 21, 2019

I really would like this default feature myself. Please consider it. I don’t see a downside to doing it.


Multiple requests for this basic feature since 2016, please keep us updated on the status.

Thanks.


  • New Participant
  • 1 reply
  • August 28, 2019

Can the Airtable team update us on the status of this feature request?


Just chiming in as a new Airtable user: single select default would be a very useful feature. Having the grouped by workaround is nice, but having the option to set a default would be even nicer.


  • New Participant
  • 2 replies
  • September 19, 2019

How is this not a feature? We’ve been waiting for 3 years now for this.


I made a tool that solves this problem. You define a default value, and then the tool will periodically update empty rows with the default value. Works with single select, multiple select, linked records, attachments, etc.


Just started using Airtable and that lack of default for single selects seems a major omission so I’m added my voice to the clamour for this.


You can also create a computed column in addition to the column that you want to default using the “Formula” type. For example, I have a “Status” column that is my single select and a “Computed Status” that is a formula. My formula is IF(Status = “”, “Lead”, Status).


2020 - Please add this in!


  • New Participant
  • 2 replies
  • February 25, 2020

I agree, this is absurd. Every single form builder and database I have ever used has this option. On the free version of air table right now. Super basic functionality they’re missing is causing me to never want to pay…


kuovonne
Forum|alt.badge.img+17
  • Brainy
  • 5987 replies
  • February 25, 2020
Trey_Williams wrote:

I agree, this is absurd. Every single form builder and database I have ever used has this option. On the free version of air table right now. Super basic functionality they’re missing is causing me to never want to pay…


@Trey_Williams


I agree that this missing functionality is frustrating.


However the workaround described by @American_Appworks on Jan 23 works fairly well.


Here is a slightly modified version of the formula:


IF( {SingleSelectField} = BLANK(), 

  "default value", 

  {SingleSelectField}

)


  • New Participant
  • 2 replies
  • February 26, 2020
kuovonne wrote:

@Trey_Williams


I agree that this missing functionality is frustrating.


However the workaround described by @American_Appworks on Jan 23 works fairly well.


Here is a slightly modified version of the formula:


IF( {SingleSelectField} = BLANK(), 

  "default value", 

  {SingleSelectField}

)


Hi @kuovonne. Loving that I just came across the same challenge and youve posted a solution today!


Pardon my novice use of formulas in AT. but how do U define “SingleSelectField”?


Scenario - lead generation from SMS using zapier and click send. Basically a new record is inserted when an sms response is received (works super well) I then want the ‘STATUS’ field default (inserted as null/blank) to be set to NEW. Then all the team need to do is use a drop down to change to either ‘closed/dead’ 'booked" or ‘call back’


Appreciate your guidance in advance.


Russell (from Australia)


  • New Participant
  • 2 replies
  • February 26, 2020
Genesis_Hair wrote:

Hi @kuovonne. Loving that I just came across the same challenge and youve posted a solution today!


Pardon my novice use of formulas in AT. but how do U define “SingleSelectField”?


Scenario - lead generation from SMS using zapier and click send. Basically a new record is inserted when an sms response is received (works super well) I then want the ‘STATUS’ field default (inserted as null/blank) to be set to NEW. Then all the team need to do is use a drop down to change to either ‘closed/dead’ 'booked" or ‘call back’


Appreciate your guidance in advance.


Russell (from Australia)


Ok. worked it out. You need to create a new column with the formula and SingleSelectField = the name of the field that has the dropdown. which kinda means I need to show 2 fields “Current Status” (formula field and “Change Status” (single select field).


Does that sound right?


kuovonne
Forum|alt.badge.img+17
  • Brainy
  • 5987 replies
  • February 26, 2020
Genesis_Hair wrote:

Ok. worked it out. You need to create a new column with the formula and SingleSelectField = the name of the field that has the dropdown. which kinda means I need to show 2 fields “Current Status” (formula field and “Change Status” (single select field).


Does that sound right?


@Genesis_Hair


You got it!


kuovonne wrote:

@Trey_Williams


I agree that this missing functionality is frustrating.


However the workaround described by @American_Appworks on Jan 23 works fairly well.


Here is a slightly modified version of the formula:


IF( {SingleSelectField} = BLANK(), 

  "default value", 

  {SingleSelectField}

)


Yes I’m aware this fix exists. It’s the one I used. It is clunky, redundant and unnecessary.


Trey_Williams wrote:

Yes I’m aware this fix exists. It’s the one I used. It is clunky, redundant and unnecessary.


I agree this is not clean or DRY. would be better if there was just a way to make a default for single selects


This would be really useful.


  • New Participant
  • 1 reply
  • September 18, 2020

Why has this not been done yet? We need single select for the default column. Cmon airtable!


kuovonne
Forum|alt.badge.img+17
  • Brainy
  • 5987 replies
  • September 19, 2020
Management11 wrote:

Why has this not been done yet? We need single select for the default column. Cmon airtable!


The newest workaround for setting a default value is to use an automation.


Reply