Forum Discussion
kintela
Helper II
9 years agoone to many question
Hi I have this relationship Where one Oferta can be associated to many Proyectos but many Proyectos can exists without any Oferta associated So I want to show in my report ...
v-qiuyu-msft
Community Support
9 years agoHi kintela,
From your description, Ofertas linked to Proyectos based on the ID and OfertaID, you want to get the Proyectos which are associated with Ofertas, right?
In your scenario, you can create a measure to filter non related records like below:
m = CALCULATE(MAX('Table1'[Proyecto]),FILTER('Table1','Table1'[OfertaID]<>BLANK()))
You can take a look at attached .pbix file. If it doesn't meet your requirement, please tell us the expected results based on our sample data.
Best Regards,
Qiuyun Yu
- kintela9 years ago
Helper II
Hi v-qiuyu-msft
In this case I think that the question is how to configure the cross filter direction.
Regards