HI all, I want to print column name Crores to the right side and I have tried all the procedure but not able to do so proc REPORT data=WORK.OP; TITLE " CHECK"; COLUMNS ("Crores" 'List of Branches ' Q1 Q2) ; define CRORES / " " style(HEADER) = [cellwidth=1in font=("Times New Roman",11pt) textalign=RIGHT verticalalign=RIGHT]; DEFINE Q1 /DISPLAY; DEFINE Q2 /display; RUN;
... View more