Hi Domo Sapiens,
Currently, we have a year over year graph that has current year budget also in the series:
The bar graphs are each year's actual values, and the line is the current year's budget value.
I hard-coded each series with a beastmode, as such:
CASE WHEN YEAR(Date
) = '2025' AND Actual or Budget
= 'Actual' THEN Charge Quantity
ELSE 0
END
CASE WHEN YEAR(Date
) = YEAR(CURDATE()) AND Actual or Budget
= 'Budget' THEN Charge Quantity
ELSE 0
END
Unfortunately, this renders the date filtering useless since each year is hardcoded in the above beastmode.
Best case scenario: I can use the Period over Period chart so that the Date can be filtered by the native "Choose Date" filter box. However, I can't figure out how to include the budget series when using a PoP chart, because it lumps it in with the year.
Any ideas?