Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

We've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register now

Reply
JosephS
Regular Visitor

Join Against Unfiltered Column

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  
TerritorySalesYoY%
MidWest150012.5
Eastern200010.4
Pacific30008.8

 

Targets  
QuarterTerritoryTarget (YoY%)
Q1FY20MidWest15
Q1FY20Eastern10
Q1FY20Pacific14
Q1FY20 13.5
1 ACCEPTED SOLUTION
Greg_Deckler
Community Champion
Community Champion

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%])
  )

 



Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
DAX For Humans

DAX is easy, CALCULATE makes DAX hard...

View solution in original post

2 REPLIES 2
Greg_Deckler
Community Champion
Community Champion

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%])
  )

 



Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
DAX For Humans

DAX is easy, CALCULATE makes DAX hard...

Thanks for responding.  I'm working on understanding and implementing your solution.  I'll let you know how it goes.

Helpful resources

Announcements
New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

March Power BI Update Carousel

Power BI Community Update - March 2026

Check out the March 2026 Power BI update to learn about new features.