Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
Hi Experts,
I have a requirement where i have to filter the reports on the basis of two dimensions with OR condition. The table descriptions are in the attached image and the filter to apply in the report is Dim_Table_1.year>=2014 or Dim_Table_2.Year>=2015.
Hi anandtiwari,
Based on your description, you want to use [YEAR] columns in two Dim tables to filter the Fact_table, right?
You can create a measure in Fact table using DAX below:
Measure = CALCULATE(aggregation, FILTER(Fact_Table, RELATED(Dim_Table_1[YEAR]) >= 2014 || RELATED(Dim_Table_2[YEAR]) >= 2015))
Regards,
Jimmy Tao
Thank you for this suggestion Jimmy, Now the requirement is User needs to enter the Year value as parameters. It is like :
Param_1 = 2014, Param_2 =2015
Measure = CALCULATE(aggregation, FILTER(Fact_Table, RELATED(Dim_Table_1[YEAR]) >= Param1 || RELATED(Dim_Table_2[YEAR]) >= Param2))
Will you guide if the same works in Power BI,If yes how we can achieve this. I am using Direct query to connect to Data Source.
User | Count |
---|---|
84 | |
77 | |
76 | |
43 | |
36 |
User | Count |
---|---|
109 | |
56 | |
52 | |
45 | |
43 |