Forum Discussion
sj_
7 years agoFrequent Visitor
Help with DAX formula
Hi! Given two tables A (green) and B (blue), I need to fill out column B (complete/incomplete) based on Status column in table B. (See "Table A ID" - many to one relationship from table B to A) ...
- 7 years ago
Try this:
Column = VAR __table = SELECTCOLUMNS(RELATEDTABLE('TableB'),"__status",[Status]) RETURN IF("Open" IN __table,"Incomplete","Complete")
Greg_Deckler
7 years agoCommunity Champion
Try this:
Column =
VAR __table = SELECTCOLUMNS(RELATEDTABLE('TableB'),"__status",[Status])
RETURN
IF("Open" IN __table,"Incomplete","Complete")sj_
7 years agoFrequent Visitor
Thank you so much!