Hi,
I am having a situation where i want the page numbers in comma format like 1,234
but when i am using ~{THISPAGE} in ODS PDF it is creating the page number but with out comma like 1234.
Is there any way to make it work like that
For example:
my page should look like
PAGE:1,234 instead of
PAGE:1234.
i am using Proc Report and Data _NULL_.
Previously i was creating a Variable in the data set and used format on that but it is creating some problems.My variable is not printing fine in DATA _NULL_ when i am using LinesLeft=Lines
F0r example:
DATA _NULL_;
SET TEST;
PAGESIZE=60 LINESLEFT=LINES LINESIZE=157;
When I am using LinesLeft=Lines i have to use ~{THISPAGE} For Page Numbers instead of the variable i created.