I’m feeling very ashamed of myself for asking (because I’m pretty sure I’m just missing something very simple, as it often happens to me )…
The situation is :
On one of my [Table]
, I’ve got 7 checkboxes : {Day 1}
, {Day 2}
, {Day 3}
, {Day 4}
, {Day 5}
, {Day 6}
, {Day 7}
.
These checkboxes are just meant to tell me is something is happening that day (Checkbox= checked) or not (Checkbox= unchecked).
Nothing to fancy there .
What I want to do, is creating another field on the same [Table]
that could tell me what {Day}
has been checked.
For example:
If {Day 1}
, {Day 2}
and {Day 5}
have been checked, this field (let’s call it {Days}
) would tell me something like :
=> {Days}
: {Day 1},{Day 2},{Day 5}
I’ve searched and quickly found Using checkbox fields in formulas in the Airtable Support which is pretty simple and works if there is only one checkbox.
IF({Day 1}=1,"Day 1","")
What I’m not able to do, is to find the right formula that could put together all the IF()
IF({Day 1}=1,"Day 1","")
IF({Day 2}=1,"Day 2","")
IF({Day 3}=1,"Day 3","")
IF({Day 4}=1,"Day 4","")
[Etc...]
I thought of using an ARRAJOIN()
function, but well, I’m just stuck there…
Can someone guide me through this ?
Thank you very much in advance !