Help

Automatically Selecting Multiple Selections in a New Cell

Topic Labels: Base design Data Formulas
108 5
cancel
Showing results for 
Search instead for 
Did you mean: 
LaurenMaine
6 - Interface Innovator
6 - Interface Innovator

We are a publishing company and we publish individual pieces of content on multiple dates.  I have a different sheet that I'd like to have all of those dates be put together into 1 cell (see attached). Is there a way to do that so that if I fill in a date in the "Publish Date 1", "Publish Date 2", etc. cells, that it will automatically add them into the column on the far right that is referencing another sheet?  I did it manually in the attached screenshot just to show what I would like to happen. Thanks in advance!

5 Replies 5
Ron_Daniel
8 - Airtable Astronomer
8 - Airtable Astronomer

@LaurenMaine - how we do it would depend on your ultimate goal. Can you explain how you need to parse the data, and how you're using/viewing it? Example:
- I need a calendar that lets me look at any given date and see a list of articles published on that day, along with the number of times each article has been published so far.

LaurenMaine
6 - Interface Innovator
6 - Interface Innovator

Hi @Ron

It got a little complicated unfortunately, but I wanted to end up with another view, similar to what's attached), where I can show all segments scheduled to publish on a particular day, whether they're republishing or original content.

Doable, but kinda tricky!  You'd need a formula field that'd help you concat all the dates together like this:

Screenshot 2024-11-25 at 10.50.11 PM.png

 

IF(
  {Date 1},
  DATETIME_FORMAT({Date 1}, 'MM/DD/YYYY') & ','
) &
IF(
  {Date 2},
  DATETIME_FORMAT({Date 2}, 'MM/DD/YYYY') & ','
)

 

And then you'd use an automation to paste that text value into the linked field to the other table:

Screenshot 2024-11-25 at 10.51.23 PM.png

The main consideration here is that you're going to need to convert the primary field of your linked table to a text field in order for this to work, and if you want the date for filtering etc purposes you'd just use a formula field to parse it again:

Screenshot 2024-11-25 at 10.53.14 PM.png

Link to base

 
Ron_Daniel
8 - Airtable Astronomer
8 - Airtable Astronomer

@LaurenMaine does this work? If so, I can share the formulas with you. If you need them linked as individual entities (example: A segment published on date 1 needs to be separate from the same segment published on date 2. This might be to indicate differences such as publishing platform, page placement, etc.), then I'd recommend a three-table setup rather than two tables.

Screenshot 2024-11-25 at 11.21.30 AM.png


Screenshot 2024-11-25 at 11.20.58 AM.png

LaurenMaine
6 - Interface Innovator
6 - Interface Innovator

HI @Ron_Daniel Thank you!  I think this might work... It does make me have to think a while, but I think it might work... And then I could just create a calendar view that shows everything that is publishing on a particular day... That would make it a lot easier I think to look at for me (in the Publishing Dates tab).