Jan 06, 2023 09:19 AM - edited Jan 06, 2023 09:20 AM
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
Solved! Go to Solution.
Jan 07, 2023 01:51 AM - edited Jan 07, 2023 01:54 AM
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)
Jan 06, 2023 12:58 PM
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] ')
Jan 06, 2023 01:46 PM
Thank you for your help! I think this may be the solution to the challenge!
Have a great weekend!
Jan 07, 2023 01:51 AM - edited Jan 07, 2023 01:54 AM
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)
Jan 09, 2023 05:19 AM
Thank you!