Forum Discussion
posterme
8 years agoFrequent Visitor
Slicer - How can I count selected months?
Hi Guys, how can I or is it possible to count how many months I have selected in a Date-Slicer? I want to divide a value with the count of monts, e.g. earnings / selected months ... All variants ...
vega
Resolver III
8 years agoCount =
IF(
ISFILTERED(Months[Month]),
COUNT(Months[Month]),
0
)This will count if the months column is selected directly. If you want to account for the months column being filtered indirectly, use ISCROSSEDFILTERED instead of ISFILTERED.
- posterme8 years agoFrequent Visitor
Hi Vega,
thank you - unfortunately, the value is always "0" instead of, in this example, "5":
BR
- vega8 years ago
Resolver III
Can you post your Date table? How is the slicer being created? Like I said earlier, if the months are not being filtered directly, then you need to use ISCROSSFILTERED.
- posterme8 years agoFrequent Visitor
Hi,
I have tested both ISFILTERED and ISCROSSFILTERED - below you'll find the screenshot from the table field:
Slicer (Timeline) is configured only with the "Date" field:
Again - many thanks for your support :)