Use SAS to write the cover letter for job application

This post was kindly contributed by SAS Analysis - go there to comment and to read the full post.

We can use data _null_ to write a customized cover letter in job application.

options nodate nocenter nonumber  LEFTMARGIN=1in RIGHTMARGIN=1in TOPMARGIN=1in BOTTOMMARGIN=1in; ;
title;footnote;

%let N1=Chen Junfang;

data company;
input person $20.
/title $20.
/ company $20.
/ address $20.
/ contact $20.
/ require1 $80.
/qual1 $80.
;
cards;
John Kennedy
Supervisor
monsanto
Apt 23, Jackson Dr.
afdfafadfa@dfdf.com
SAS Macro and SQL
I know SAS Macro and SQL
;
run;
ods pdf file='d:\Charlie_cl3.pdf' style=statdoc;
data _null_;
set company;
file print pagesize = 70 linesize = 80;

put @50 "Chao(Charllie) Huang" /
@50 "Apt27, N Husband " /
@50 "Stillwater, OK"/
@50 "74075" /
@1/
@1 "&sysdate9." /
@1 /;
put @1 person $20.;
put @1 title $20.;
put @1 Company $20.;
put @1 address $20.;
put @1 Contact $20.;
put @1/ "Dear &person ";
put @1 "My friend, &n1, suggested me to apply for this post. With the job description of this opening, I believe that my educational background in statistics, along with my professional experience, makes me an excellent candidate for this position."/
@1/
@1 " Your requiement" @40 "My qualification" / ;
put @1 "--------------------------------------------------------------------" / ;
put @1 require1 $40. @40 qual1 $40.;
put @1/;
put @1 "If you have questions, or if you want to schedule an interview, please contact me at 405-269-6033. I look forward to meeting you to further discuss employment opportunities with COMSYS SAS Practice. "/
@1/;
put @1 "Sincerely,"/
@1 /
@1 "Chao(Charlie) Huang"/

;run;
ods pdf close;

This post was kindly contributed by SAS Analysis - go there to comment and to read the full post.