Using proc template to create an overlayed barchart.
Ran into this issue when using a picture format.
The barchart does not seem to recognize the user created picture format.
proc format;
picture date5_ (default=6) other='%0d %A' (datatype=date);
data _byDate;
set _byDate;
ASA=AnswerWaitTimeToHalf/CallsHandledtoHalf;
AHT=HandledCallsTimeToHalf/CallsHandledToHalf ;
CallsHandled=CallsHandledtoHalf/ TotalCalls;
AdandonRate=AbandonedCalled/TotalCalls;
format date date5_.;
run;
proc template;
define statgraph dualhist;
begingraph;
entrytitle "Total Calls vs Handled";
layout overlay / xaxisopts=(label="Day");
/* Total Calls*/
barchart x=date y=TotalCalls/ orient=vertical ;
endlayout;
endgraph;
end;
run;
proc sgrender data=_byDate template=dualhist;
run;
A couple of questions:
1) Are there any notes in the log about that format?
2) How do your values appear on the X axis?
Thanks!
Dan
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and save with the early bird rate—just $795!
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.