The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Is it possibile in dax to apply a filter referring to another table? Like that:
Solved! Go to Solution.
hi, @Anonymous
Yes, you could.
and I think what you need is RELATED or RELATEDTABLE in the calculation. (The relationship between the two tables must already be established )
https://docs.microsoft.com/en-us/dax/related-function-dax
https://docs.microsoft.com/en-us/dax/relatedtable-function-dax
Best Regards,
Lin
hi, @Anonymous
Yes, you could.
and I think what you need is RELATED or RELATEDTABLE in the calculation. (The relationship between the two tables must already be established )
https://docs.microsoft.com/en-us/dax/related-function-dax
https://docs.microsoft.com/en-us/dax/relatedtable-function-dax
Best Regards,
Lin
Create a new column in your table. This one created in item table using sales tables
Maxx(filter(sales,Sales[item_id]='Item'[Item ID]),Sales[Order Id])