Skip to main content
Solved

Multiple Task Completion

  • February 15, 2023
  • 1 reply
  • 10 views

Forum|alt.badge.img+1
  • New Participant

I have three training sessions, and participants need to have completed all three in order to proceed. I'd like to have a formula that shows 'completed' when all three = completed and 'incomplete' when none/not all are complete.

Thank you!

Best answer by Jack_Manuel

You could try something like,

IF( AND( {Training Session 1} = 'Completed', {Training Session 2} = 'Completed', {Training Session 3} = 'Completed' ), 'completed', 'incomplete' )

This saying , "If everything inside AND() is true then say "complete", otherwise say 'incomplete'"

1 reply

Jack_Manuel
Forum|alt.badge.img+18
  • Brainy
  • 80 replies
  • Answer
  • February 15, 2023

You could try something like,

IF( AND( {Training Session 1} = 'Completed', {Training Session 2} = 'Completed', {Training Session 3} = 'Completed' ), 'completed', 'incomplete' )

This saying , "If everything inside AND() is true then say "complete", otherwise say 'incomplete'"