Forum Discussion
Dates slicer format
Lot's of ways to solve this. Not sure what your prefered way is, but below is problably the easiest:
You can use this as a visual filter in the filter pane, as 'is not blank'.
Assuming you have a Dim 1 → * Fact relationship
Measure =
IF(
NOT ISBLANK(COUNTROWS('FactTable')),
1
)
Thanks a lot for your quick answer PVO3
I am not sure to understand your solution. Sorry maybe I did not present my problem the right way.
My database is structured this way:
Each line corresponds to a specific company each employee are working on. So, of course, since it is on a weekly basis, I have several time the same date.
I would like to avoid having for example 01/01/2017...03/01/2017...04/01/2017 in my list since there are no line containing those dates in my database.
Thanks a lot!
- PVO33 years ago
Impactful Individual
The solution I provided works. But like I said i'm assuming you have a Dim 1 → * Fact relationship. Your Dim is a date/calendar table. Based on your reply I don't think you're currently using a date/calendar table. Be sure to use one. Depending on your measure, you might not even need the measure I provided earlier.