Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by attending the DP-600 session on April 23rd (pacific time), live or on-demand.
Learn moreNext up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register now
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 that are not listed in the Target Table should be assigned a default value "100%".
Is there a way to achieve this?
Attached a sample .pbix file (Targets.pbix) for better understanding.
Thanks in Advance!
Solved! Go to Solution.
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)
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)
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)
I have a followup question. Is there any chance to use the Default target column instead of hard coding the default value?
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)
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 48 | |
| 45 | |
| 41 | |
| 20 | |
| 17 |
| User | Count |
|---|---|
| 69 | |
| 63 | |
| 32 | |
| 31 | |
| 25 |