Forum Discussion
Ignoring an active relationship
Hello,
I have problem with filtering data in measure. I need to ignore the active relationship with the fact table from the date dimension and define the date that has to be filtered in the measure, keeping all other relationships with the fact table active and working.
The measure -
var days = max(days[days])
Now if i change the matrix to filter the data by different dimension, lets say customer gender - it ignores the active relationship.
The problem is the ALLSELECTED - it works when applying filters outside of the visualization.
Any help would be nice.
Hi Anonymous ,
>>So basically i need to find how to change the measure so that it ignore only the active date relationship.
You can use REMOVEFILTERS function in your formula to clear filters from the specified tables or columns. You can refer to https://docs.microsoft.com/en-us/dax/removefilters-function-dax
You can try something like:
The measure = VAR days = MAX ( days[days] ) VAR amount = CALCULATE ( SUM ( 'Table'[amount] ), FILTER ( ALLSELECTED ( Table ), 'Table'[first_date] + days <= MAX ( '_T Date'[Date] ) && 'Table'[first_date] + days >= MIN ( '_T Date'[Date] ) ), REMOVEFILTERS () ) RETURN amountIf this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Best Regards,
Dedmon Dai
3 Replies
- v-deddai1-msft
Community Support
Hi Anonymous ,
>>So basically i need to find how to change the measure so that it ignore only the active date relationship.
You can use REMOVEFILTERS function in your formula to clear filters from the specified tables or columns. You can refer to https://docs.microsoft.com/en-us/dax/removefilters-function-dax
You can try something like:
The measure = VAR days = MAX ( days[days] ) VAR amount = CALCULATE ( SUM ( 'Table'[amount] ), FILTER ( ALLSELECTED ( Table ), 'Table'[first_date] + days <= MAX ( '_T Date'[Date] ) && 'Table'[first_date] + days >= MIN ( '_T Date'[Date] ) ), REMOVEFILTERS () ) RETURN amountIf this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Best Regards,
Dedmon Dai
- vstoppPCMFrequent Visitor
Thank you so much! This helped me get the correct numbers for a visual that was limited by a join.
Valerie
- amitchandak
Super User
Anonymous , Join the first Date of your table with a date table and use all selected on the date table. It should allow other filter
The measure -
var days = max(days[days])
var amount = CALCULATE(SUM('Table'[amount]),
FILTER(ALLSELECTED(Date),'Date'[first_date]+days <= MAX('_T Date'[Date]) && 'Date'[first_date]+days >= MIN('_T Date'[Date]) )
)
return amountTo get the best of the time intelligence function. Make sure you have a date calendar and it has been marked as the date in model view. Also, join it with the date column of your fact/s. Refer :
https://radacad.com/creating-calendar-table-in-power-bi-using-dax-functions
Appreciate your Kudos.