Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by watching the DP-600 session on-demand now through April 28th.
Learn moreJoin the FabCon + SQLCon recap series. Up next: Power BI, Real-Time Intelligence, IQ and AI, and Data Factory take center stage. All sessions are available on-demand after the live show. Register now
I've got two tables, Sales and Targets, whose data I want to present in a report. On the report I have a Line Chart presenting Sales by Territory. I also have a Card with the Quarter Target. Initially, this Card should show the overall Target (the one with the NULL Territory). Once the user selects (via legend or line) a highlight on Territory, the Card should change to show the Territory Target.
I'm relatively new to Power BI. I'm familiar with the use of ALL and ALLEXCEPT. I'm not clear on how I would achieve what I'm looking for above. Any thoughts?
Thanks.
Joseph
| Sales | ||
| Territory | Sales | YoY% |
| MidWest | 1500 | 12.5 |
| Eastern | 2000 | 10.4 |
| Pacific | 3000 | 8.8 |
| Targets | ||
| Quarter | Territory | Target (YoY%) |
| Q1FY20 | MidWest | 15 |
| Q1FY20 | Eastern | 10 |
| Q1FY20 | Pacific | 14 |
| Q1FY20 | 13.5 |
Solved! Go to Solution.
Perhaps:
Measure =
VAR __Territory = MAX('Sales'[Territory])
RETURN
IF(HASONEVALUE('Sales'[Territory]),
LOOKUPVALUE('Targets'[Target YoY%],'Targets'[Territory],__Territory]),
MAXX(FILTER('Targets',ISBLANK('Targets'[Territory])),'Targets'[Target YoY%])
)
Perhaps:
Measure =
VAR __Territory = MAX('Sales'[Territory])
RETURN
IF(HASONEVALUE('Sales'[Territory]),
LOOKUPVALUE('Targets'[Target YoY%],'Targets'[Territory],__Territory]),
MAXX(FILTER('Targets',ISBLANK('Targets'[Territory])),'Targets'[Target YoY%])
)
Thanks for responding. I'm working on understanding and implementing your solution. I'll let you know how it goes.
Check out the April 2026 Power BI update to learn about new features.
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.
| User | Count |
|---|---|
| 5 | |
| 3 | |
| 3 | |
| 3 | |
| 3 |
| User | Count |
|---|---|
| 8 | |
| 6 | |
| 5 | |
| 5 | |
| 4 |