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.
I think the issue is I am trying to remove the filter from the date table, and at the same time I am using the column from the date table in the visual.
is there a work around that other than using another date table?
hi Anonymous
If so, you need another date table. you could just duplicate the basic date table.
Then create another relationship as basic date table.
Now use the fields from this new date table in the matrix visual and set "Show items with no data"
If you still have the problem, just show a sample pbix file and your expected output.
Regards,
Lin
- Anonymous6 years agoNot applicable
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.
- Anonymous6 years agoNot applicable
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')
)