Hi All,
Hope you are doing well!.. I currently have a bar chart to show the this year inventory by Fiscal week... I want to have a line running over my bar chart that shows the inventory for the same time last year...Can you please let me know how to do that..
My beast mode for This year inventory
count(distinct case when year(`SNAPSHOT_DATE`) = year(current_date) then `sno` end)
My beast mode for last year inventory
count(distinct case when year(`SNAPSHOT_DATE`) = year(current_date)-1 then `sno` end)
Current state of my chart (having only 2022 inventory)...(Attached pic)..I want to have a line chart running over my bar chart showing the 2021 inventory...