The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
Hi Experts,
I want to filter the fact table based on the two dimension tables using the condition (Document_Series_No>2015 or Entry_Series_No>2014),How can i do this in Power BI ? The attached is the table descriptions.
@Anonymous,
Could you please share dummy data of your tables and post expected result? You can create DAX by adding the filter condition as below.
CALCULATE(<expression>,FILTER('Fact Table','Fact Table'[Document_Series_No]>2015 || 'Fact Table'[Entry_Series_No]>2014))
Regards,
Lydia