Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hello,
I created a sample of data using a pre-defined dates slicer in order to show results from today/last week/last month/last quarter.
I created a flag measure which I used as a filter on the chart visual:
flag =
SWITCH (
MAX ( 'slicer'[slicer] ),
"Today", IF ( MAX ( 'DateCalendar'[Date] ) = TODAY (), 1 ),
"Last Week",
IF (
DATEDIFF ( MAX ( 'DateCalendar'[Date] ), TODAY (), DAY ) <= 7
&& MAX ( 'DateCalendar'[Date] ) <= TODAY (),
1
),
"Last Month",
IF (
DATEDIFF ( MAX ( 'DateCalendar'[Date] ), TODAY (), DAY ) <= 30
&& MAX ( 'DateCalendar'[Date] ) < TODAY (),
1
),
"Last Quarter",
IF (
DATEDIFF ( MAX ( 'DateCalendar'[Date] ), TODAY (), DAY ) <= 90
&& MAX ( 'DateCalendar'[Date] ) < TODAY (),
1
)
)
Now, when I'm changing the slicer between the pre-defined parameter (mentioned above), it worked perfectly on the chart but not on the card. (I cannot use it there)
I guess it has something to do with the fact that there is no relationship between the slicer table to the rest of the tables.
I'm pretty much lost with this issue.
How do I make the slicer work on the card visual as well? When I try to use the flag on the card visual, I cannot set the value to "Is = 1". (it's blocked)
Here is the report for download -
Solved! Go to Solution.
Hi @edant ,
Since slicer table is not connected with your action table so have to update your card visual code like below:-
CountAllFlowsTest =
SWITCH (
MAX ( 'slicer'[slicer] ),
"Today",
CALCULATE (
COUNT ( 'Action'[ID] ),
FILTER ( DateCalendar, 'DateCalendar'[Date] = TODAY () )
),
"Last Week",
CALCULATE (
COUNT ( 'Action'[ID] ),
FILTER (
DateCalendar,
DATEDIFF ( 'DateCalendar'[Date], TODAY (), DAY ) <= 7
&& 'DateCalendar'[Date] <= TODAY ()
)
),
"Last Month",
CALCULATE (
COUNT ( 'Action'[ID] ),
FILTER (
DateCalendar,
DATEDIFF ( 'DateCalendar'[Date], TODAY (), DAY ) <= 30
&& 'DateCalendar'[Date] < TODAY ()
)
),
"Last Quarter",
CALCULATE (
COUNT ( 'Action'[ID] ),
FILTER (
DateCalendar,
DATEDIFF ( 'DateCalendar'[Date], TODAY (), DAY ) <= 90
&& 'DateCalendar'[Date] < TODAY ()
)
)
)
Output:-
Thanks,
Samarth
Best Regards,
Samarth
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
Connect on Linkedin
Hi @edant ,
Since slicer table is not connected with your action table so have to update your card visual code like below:-
CountAllFlowsTest =
SWITCH (
MAX ( 'slicer'[slicer] ),
"Today",
CALCULATE (
COUNT ( 'Action'[ID] ),
FILTER ( DateCalendar, 'DateCalendar'[Date] = TODAY () )
),
"Last Week",
CALCULATE (
COUNT ( 'Action'[ID] ),
FILTER (
DateCalendar,
DATEDIFF ( 'DateCalendar'[Date], TODAY (), DAY ) <= 7
&& 'DateCalendar'[Date] <= TODAY ()
)
),
"Last Month",
CALCULATE (
COUNT ( 'Action'[ID] ),
FILTER (
DateCalendar,
DATEDIFF ( 'DateCalendar'[Date], TODAY (), DAY ) <= 30
&& 'DateCalendar'[Date] < TODAY ()
)
),
"Last Quarter",
CALCULATE (
COUNT ( 'Action'[ID] ),
FILTER (
DateCalendar,
DATEDIFF ( 'DateCalendar'[Date], TODAY (), DAY ) <= 90
&& 'DateCalendar'[Date] < TODAY ()
)
)
)
Output:-
Thanks,
Samarth
Best Regards,
Samarth
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
Connect on Linkedin
Brilliant, that works like a charm.
Many thanks, Samarth. 🙂