Forum Discussion
tinleyjj
4 years agoNew Member
Return Text when RELATED Function has not match in related table
Hi, When adding a column to a calculated table from another table using RELATED(), I would like to return "Text" where there is no related ID in the second table. I can accomplish this through ...
- 4 years ago
I think this is what you are looking for.
Next_Enroll_Outcome = COALESCE ( Related('4_Enrollment'[Enroll_Inst_Outcome]), "3_StopOut" )
jdbuchanan71
Super User
4 years agoI think this is what you are looking for.
Next_Enroll_Outcome = COALESCE ( Related('4_Enrollment'[Enroll_Inst_Outcome]), "3_StopOut" )