Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hi Experts
I am trying to work out a sales rate calculation that ignores filters. so here is the scenario.
I have 4 filters (Region, Country, Site and Department) the columns used for the filters come from 4 tables.
I am using the following DAX
Solved! Go to Solution.
Hi Amit
I worked the solution based on your help
@Anonymous ,
I did not get it completely . Need better examples and data.
Sales Y2 = if( firstnonbank(table[Country],blank())="UK",Divide([Issue]/[sales]),CALCULATE([Sales],
ALL(PMS_PARTS[DEPARTMENT]),ALL(PMS_COMPLAINT[MANUFACTURING_REGISTERED_SITE]),All(PMS_COUNTRY[MDR_REPORTING_REGION]),
PMS_TM1_SALES_VOLUME[Fiscal Period] = "Y")
)
Hi Amit
I worked the solution based on your help