Forum Discussion
DAX remove filter
- 6 years ago
Anonymous wrote:The date slicer is on another page, in this case the edit interaction will not work.
Sync'ed slicers actually create an invisible copy of the slicer on the synch'ed pages. If you go into the View menu on the page with the visible slicer you can click on the slicer and use the Sync Slicers pane to temporarily make the slicer visible by ticking the check box under the eye icon.
Then you can edit the interactions on your other page and then change the slicer on your second page back to being hidden.
- Anonymous6 years ago
Hi d_gosbell ,
Thank you so much for this, it worked, such a simple solution but perfect.
Thanks again.
Thanks guys.
Please let me know if there is another solution.
I have already added the new date table and it is working.
Thanks gain.
Hi,
The problem I am facing now is in one of measures I need to compare two columns value if they are equal, so I need to use the FILTER function, if I use the ALL function outside the FILTER function it gives the worng figures, so I need to use the ALL function inside the FILTER function to get the accurate result, but I don't how.
Below is the code that gives the worng figures:
Measure =
VAR CurrentDate = VALUE( FORMAT( DATE(YEAR ( NOW ()), MONTH ( NOW ())-3, DAY(NOW())), "YYYYMMDD"))
RETURN
CALCULATE(
AVERAGE('Job'[Time (Indicators)]),
Filter ( 'Job,
Job[Supp]=0
&& Job[Rework] =0
&& FORMAT(Job[Completed Date], "YYYYMMDD")> "19000101"
&& 'Job'[ime (Indicators)] >0
&& 'Job'[DateLocalLookupKey] >= CurrentDate
&& (Job[Location Code] = Job[Resp Centre] || Job[Hybrid Flag] = 1)
),
All ('Date')
)