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

Power BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.

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
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

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

June 2025 community update carousel

Fabric Community Update - June 2025

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