For other years view: 2019, 2018, 2017, 2016, 2015, 2014, 2013, 2012, 2011 …
date,total,pending,running, 07/13/20_07:00,total,82192,770, 07/13/20_07:30,total,166156,796, ... 07/15/20_17:30,total,145188,1549, 07/16/20_07:30,total,137694,1197, 07/16/20_08:00,total,137124,1161, 07/16/20_08:30,total,136542,1209,
/* import total into work.one */ data two; set one; if var2 eq 'total'; run; /*and var3<1000*/ title1 j=c 'Running (green line) versus Pending (red line)Jobs'; title2 j=c 'Queue: All (max is 2096)'; /* and pending < 1,000 */ footnote j=c 'Covers time period 01 JAN 2020 to 31 DEC 2020'; axis1 label=("Jobs"); axis2 label=none value=none; symbol1 interpol=join value=none color=green; symbol2 interpol=join value=none color=red; proc gplot data=two; plot var4*var1 var3*var1 / haxis=axis2 vaxis=axis1 overlay vref=2096; run; quit;