va 7.3
i am pulling sales from a data source that contains a date and sales amount.
i want to show the sales from yesterday with increase/descrease amount over the prior week/same day sales amount
ex. today is 06.15
i will show sales for 06.14 (tuesday) compared to sales 06.07 (tuesday).
trying to use derived item but no luck making this work.
month works cannot get the calculation to work with a day.
using inferred and -7 on the previous side of the calculation.
Hi mhamlett,
Have you tried to use the intck function?
data test;
days=intck('day','10jan16'd,'01jul16'd);
put days;
run;
With this function you can specify days, months, weeks... Using this function should be easy identify the dates comparing with actual day.
I usually take the actual day with
%let today = %qsysfunc(date(),yymmdd10.);
If you want to do that in SAS VA - just use the TreatAs function.
Try this post for some specific guidance:
Registration is open! SAS is returning to Vegas for an AI and analytics experience like no other! Whether you're an executive, manager, end user or SAS partner, SAS Innovate is designed for everyone on your team. Register for just $495 by 12/31/2023.
If you are interested in speaking, there is still time to submit a session idea. More details are posted on the website.
See how to use one filter for multiple data sources by mapping your data from SAS’ Alexandria McCall.
Find more tutorials on the SAS Users YouTube channel.