Forum Discussion
jcastr02
6 years agoPost Prodigy
If formula based on another table
I have a master list of team members email address of whom need to complete a task. I have another table that is showing completion of a process with a task outcome column. I'd like to add a column...
Watsky
6 years agoSolution Sage
I would join the tables on e-mail address (as long as your master doesn't include duplicates) then created a calculated column
=IF ( Task [Task Outcome] = "Approved" , 1 , 0 )