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'"