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

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
GeorgWildmoser
Frequent Visitor

Revenue for a dimension without a direct relationship, sales that are not assigned

Hello community,

please give us some support in creating a measure. We categorize our sales by industry in a report. Industry assignment is by customer. This works. 

 

I need your experience here: Now I want to create a measure that shows me the sales that are not assigned to any industry. The information is related via an intermediate table. How should the measure look like. 

 

GeorgWildmoser_0-1665576813507.png

1 ACCEPTED SOLUTION

Thanks for the post. Unfortunately it doesn't work, but your suggested solution reminded me of another post that probably has a similar relation in the data basis. 

 

Solved: Re: DAX TREATAS and BLANK() - Microsoft Power BI Community

 

In the end I generated two measures:

 

Measure1 = CALCULTE(MeasureSalesTotal, TREATAS(VALUES('Industry'[IndustryCategory]),Industry[IndustryCategory]))

Measure2 = MeasureSalesTotal - Measure1

 

Thanks again.

View solution in original post

2 REPLIES 2
Shaurya
Memorable Member
Memorable Member

Hi @GeorgWildmoser,

 

This won't be very specific but you can change names based on your table and columns. The following DAX formula should do it:

 

Other Sales = CALCULATE([Sales], FILTER('Table',ISBLANK('Table'[Industry])))

 

Works for you? Mark this post as a solution if it does!
Consider taking a look at my blog: Forecast Period - Graphical Comparison 

Thanks for the post. Unfortunately it doesn't work, but your suggested solution reminded me of another post that probably has a similar relation in the data basis. 

 

Solved: Re: DAX TREATAS and BLANK() - Microsoft Power BI Community

 

In the end I generated two measures:

 

Measure1 = CALCULTE(MeasureSalesTotal, TREATAS(VALUES('Industry'[IndustryCategory]),Industry[IndustryCategory]))

Measure2 = MeasureSalesTotal - Measure1

 

Thanks again.

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

Find out what's new and trending in the Fabric community.