Forum Discussion
Help With Formula TRUE / FALSE / NULL
- 6 years ago
Please try this expression for your calculated column on the TeamA table. Note that I had a 1:1 relationship between them, so you will have to adapt this to RELATEDTABLE() if TeamB is on the many side.
Result =
VAR existsB =
NOT ( ISBLANK ( RELATED ( TableB[UniqueID] ) ) )
VAR teamX = TableA[Team] = "X"
RETURN
SWITCH ( TRUE (), AND ( existsB, teamx ), "TRUE", existsB, "FALSE", "NULL" )Result =
VAR existsB =
NOT ( ISBLANK ( RELATED ( TableB[UniqueID] ) ) )
VAR teamX = TableA[Team] = "X"
RETURN
SWITCH ( TRUE (), AND ( existsB, teamx ), "TRUE", existsB, "FALSE", "NULL" )If this works for you, please mark it as the solution. Kudos are appreciated too. Please let me know if not.
Regards,
Pat
Please try this expression for your calculated column on the TeamA table. Note that I had a 1:1 relationship between them, so you will have to adapt this to RELATEDTABLE() if TeamB is on the many side.
Result =
VAR existsB =
NOT ( ISBLANK ( RELATED ( TableB[UniqueID] ) ) )
VAR teamX = TableA[Team] = "X"
RETURN
SWITCH ( TRUE (), AND ( existsB, teamx ), "TRUE", existsB, "FALSE", "NULL" )
Result =
VAR existsB =
NOT ( ISBLANK ( RELATED ( TableB[UniqueID] ) ) )
VAR teamX = TableA[Team] = "X"
RETURN
SWITCH ( TRUE (), AND ( existsB, teamx ), "TRUE", existsB, "FALSE", "NULL" )
If this works for you, please mark it as the solution. Kudos are appreciated too. Please let me know if not.
Regards,
Pat
- Jruiz2186 years agoFrequent Visitor
Thank you very much mahoneypat it worked just fine!