I'm making a report data for SAS VA. Example from data:
Date - Customers
01Mar2019 - 4
02Mar2019 - 5
03Mar2019 - 2
05Mar2019 - 9
So I got 0 customers on 04Mar2019. That day does not show in my report data as 0 because it's not in the original data.
Is there a handy way to get all dates of (all) year(s) from SAS EG and then just left join the work to it?
Output should be:
01Mar2019 - 4
02Mar2019 - 5
03Mar2019 - 2
04Mar2019 - 0
05Mar2019 - 9
Any tips?
Thanks!