Forum Discussion
Anonymous
8 years agoNot applicable
Set Default Value
I have a Fact Table with the Names and the Target Table with the Target and Default Target. I want to consider the Names from Fact Table and the Targets from the Target Table, where the names ...
- 8 years ago
Final Target = VAR __var = IF(Fact[Names] = RELATED('Target Table'[Name]),RELATED('Target Table'[Target]), RELATED('Target Table'[Default Target])) RETURN IF(ISBLANK(__var),1,__var) - 8 years ago
You could do something like:
Final Target 1 = VAR __var = IF(Fact[Names] = RELATED('Target Table'[Name]),RELATED('Target Table'[Target]), RELATED('Target Table'[Default Target])) RETURN IF(ISBLANK(__var),MAXX(ALL('Target Table'),[Default Target]),__var)
Greg_Deckler
Community Champion
8 years agoFinal Target = VAR __var = IF(Fact[Names] = RELATED('Target Table'[Name]),RELATED('Target Table'[Target]), RELATED('Target Table'[Default Target]))
RETURN IF(ISBLANK(__var),1,__var)- Anonymous8 years agoNot applicable
Greg_Deckler It's working. Thankyou!
- Anonymous8 years agoNot applicable
Hi Greg_Deckler
I have a followup question. Is there any chance to use the Default target column instead of hard coding the default value?
- Greg_Deckler8 years ago
Community Champion
You could do something like:
Final Target 1 = VAR __var = IF(Fact[Names] = RELATED('Target Table'[Name]),RELATED('Target Table'[Target]), RELATED('Target Table'[Default Target])) RETURN IF(ISBLANK(__var),MAXX(ALL('Target Table'),[Default Target]),__var)- Anonymous8 years agoNot applicable
Greg_Deckler Thank you!