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

Get certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. Register now

Reply
jayjay0306
Helper III
Helper III

filter from many to one relation between two tables

Hi guys,

I hope you can help me with a problem:

 

I have a DIM_Product table and a FACT_Volume table.

The relation between the "product"-table and "Volume"-table is '1-to-many'.

 

Volume table.PNG

In my Product table I have a lot of redundant products, which have no volume (in the example above there is one ("3")). 

My problem is that I can't make the cross-filter direction="both", which would solve the problem.

Now, my question is:

Is there a way to set up a calculated column (fx. "flag") on the product table, which can be used as filter, based on the volumes in the volume-table?

I have tried the following as a calculated column on the product table:

 

Active products = IF(NOT(ISEMPTY('Volume table')),1,0)

     ... but that didn't work.

Any ideas?

 

thanks.

Br,

Jayjay0306

1 ACCEPTED SOLUTION
Shaurya
Memorable Member
Memorable Member

Hi @jayjay0306,

 

You can use:

 

Flag = IF(CALCULATE(SUM(Volume[Volume]),FILTER(Volume,'Product'[ID]=Volume[ID]))>0,1,0)

 

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

View solution in original post

3 REPLIES 3
Shaurya
Memorable Member
Memorable Member

Hi @jayjay0306,

 

You can use:

 

Flag = IF(CALCULATE(SUM(Volume[Volume]),FILTER(Volume,'Product'[ID]=Volume[ID]))>0,1,0)

 

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

Thanks Shauya, this works perfectly. 🙂

 

Br,

Jayjay0306

johnt75
Super User
Super User

Try changing it to

Active products = IF(NOT(ISEMPTY(RELATEDTABLE('Volume table'))),1,0)

Helpful resources

Announcements
November Carousel

Fabric Community Update - November 2024

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

Live Sessions with Fabric DB

Be one of the first to start using Fabric Databases

Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.

Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.

Nov PBI Update Carousel

Power BI Monthly Update - November 2024

Check out the November 2024 Power BI update to learn about new features.