I'm attempting to write a beast mode that checks a static date with a dynamic minimum date. If the static date is greater than the dynamic minimum date it would be classified as 'No' and vise versa.
The beast mode formula:
CASE WHEN Onboarding Date
<= (MIN(MIN(Report_Date
)) OVER()) THEN 'Yes' ELSE 'No' END
When I use the filter in a table card, it works correctly. However, when I try to use a bar chart the filter only has one option.
Date range and aggregation are identical in both cards.