- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Posted 10-05-2018 07:37 AM
(1290 views)
FILENAME mail EMAIL
TO=("anil.patil@edelweissfin.com" )
SUBJECT="Retail Finance - Credit TAT Dashboard - 01-Aug-2018 to 31-Aug-2018" CONTENT_TYPE="text/html";
ODS LISTING CLOSE;
ODS HTML BODY=mail;
ODS STARTPAGE = NO;
ods escapechar='^';
proc odstext ;ODS STARTPAGE = NO;
p "Dear Team, ^{style[font_size=12pt font=('Calibri') fontweight=bold]}^{newline 2}" ;
p "Please find below the link for TAT Dashboard Report for the period 01-Aug-2018 to 31-Aug-2018.";
p "";
p "http://sasreports.edelweissfin.com:7980/SASVisualAnalytics/report?location=%2FShared%20Data%2FVA_Reports%2FRF_Main%2FCredit%20Dashboard%20report&type=Report.BI§ion=vi114845";
p "";
p "PFB Zone wise quick snapshot for your reference.";
run;
PROC REPORT DATA=sashelp.class nocenter out=Tat_volume_overall LIST
/*style=[cellwidth=.1 in rules=group frame=void] */
style(header)=[background= #BBDEFB foreground=black]
style(summary)=[background=white foreground=black font_weight=bold]
style={font_size=10pt font=('Calibri') width=600 cellpadding=2 borderwidth=0 bordercolor=white}
;
COLUMN Name age sex ;
define Name / center ;
define age / center analysis mean format=Number20.0;
define sex / center ;
RBREAK AFTER /summarize ;
RUN;
proc odstext;
p " ";
p " ";
p "Thanks & Regards,";
p "Business Excellence - RF.";
run;
ODS HTML CLOSE;
ODS LISTING;
1 REPLY 1
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Not a direct reply, but maybe you could write these lines as titles?
Or maybe a data step using object dsout would leave less space?