Skip to main content

Hi!

I am new to airtable (love it!) and figuring it how to use it for project management.

I'm stuck right now and trying to figure out one issue and am looking for advice.

I have a "check list" of 25+ items that need to be completed for each build we are working on. How would I build the table to show the same items for build A, B, C, etc... so we can keep track of what is in the pipeline?

Thanks!

Matt

There are two types of check-boxes that come to mind that you could consider.

The first is the Checkbox field, which for each record, you could have 25 Checkbox fields that need to be ticked.

The other method is a Long Rich Tech field, which allows for CheckBoxes to be created and interacted with, and it would be possible (pretty sure) to have a Formula column that keeps an eye on that Long Rich Text field to count how many empty Checkboxes there are, and also how many ticked Check Boxes there are.

Each have their limits and advantages that you'll need to test. The formula that I used for counting the CheckBoxes in the Text is;

(LEN({Items}) - LEN(SUBSTITUTE({Items},'[x] ',"")))/LEN('[x] ')

 


Thank you for your help! I think this may be the solution to the challenge!

Have a great weekend!

 


Another possible option - use a multi select field for the options and count them using the formula:

IF({Items},LEN({Items})-LEN(SUBSTITUTE({Items},",",""))+1)


Another possible option - use a multi select field for the options and count them using the formula:

IF({Items},LEN({Items})-LEN(SUBSTITUTE({Items},",",""))+1)


Thank you!


Reply