Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
Hello All,
I have report where I have 2 tables data A and B.
So here i have field called Region with values EMEA and APAC from both the tables.
I have a filter on Region
Here is my dax calculation for a measure
If region ='EMEA' then TableA.Field1
elseif region ='APAC' then TableB.Field1
elseif Overall then TableA.Filed1+TableB.Field1
In my Region filter I am getting EMEA ,APAC and Select All options
Here my confusion is like how I need to get the overall condition
When the user selects 'Select all' from filter I have to sum both the fields from A and B
Could any one please help
Solved! Go to Solution.
@Anonymous , Select All is nothing but no filter. There is a DAX function that returns whether the table or column is directly filtered - ISFILTERED()
https://docs.microsoft.com/en-us/dax/isfiltered-function-dax
You can use this function for overall condition, IF( NOT(ISFILTERED(Region)), A+B)
@Anonymous , Select All is nothing but no filter. There is a DAX function that returns whether the table or column is directly filtered - ISFILTERED()
https://docs.microsoft.com/en-us/dax/isfiltered-function-dax
You can use this function for overall condition, IF( NOT(ISFILTERED(Region)), A+B)
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Prices go up Feb. 11th.
If you love stickers, then you will definitely want to check out our Community Sticker Challenge!
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
144 | |
75 | |
63 | |
51 | |
48 |
User | Count |
---|---|
204 | |
86 | |
64 | |
59 | |
56 |