data price;
set pricedata;
if date=intnx('weekday',intnx('month',date,0,'e'),0);
run; These are my current codes which works except that two months are still missing i.e. 30th july 2020 and 29th December 2020. How should i modify the codes such that it reflects these two specific data as well? alternative method i was thinking is could i specify that 31st July 2020, 30th and 31st December 2020 is a holiday. Hence, it will be excluded in the codes above for working days of the week? If so, what are the codes? Thank you
... View more