Jan 17, 2023 03:59 PM
Hi everyone,
I'm very new to Airtables and I'm trying to figure out some formulas. For now, I'm trying to figure out training completion from my base. The 'Training Completed' field is a multi-selection field (also a linked field) that shows all training an employee has completed. I want to create a formula where if a person has completed Training A and Training B, then the result is 'completed'. So basically, out of the many options that present themselves in the multi-selection field, I need to select 2 specific pieces of training that indicate that a program has been completed. I've tried using the IF (FIND) formula. I'm getting part of it correct, where I've just included Training A, but when I try to add in Training B, the formula doesn't work. This is what I have so far:
Solved! Go to Solution.
Jan 17, 2023 07:03 PM
Add an "AND()" in there, so something like
IF(
AND(
FIND("Training A", {Training Completed}),
FIND("Training B", {Training Completed})
),
"Completed",
"Not Completed"
)
Jan 17, 2023 07:03 PM
Add an "AND()" in there, so something like
IF(
AND(
FIND("Training A", {Training Completed}),
FIND("Training B", {Training Completed})
),
"Completed",
"Not Completed"
)
Jan 18, 2023 10:49 AM
Thank you Adam, I'm trying this, but now it's not pulling up any results. 😞 Not sure what to do....
Jan 18, 2023 07:29 PM
Interesting! Could you share a screenshot of your table with some example data please?
Jan 20, 2023 10:50 AM
Hi Adam, your formula did indeed help me. I realized that for the second training, I actually had to pull from another tab. That's where I was going wrong. But with your formula and having corrected the second tab, it worked. 🙂