Forum Discussion
jcastr02
Post Prodigy
6 years agoIf 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
Solution Sage
6 years agoI 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 )