SSRS page numbers in page footer

后端 未结 2 1985
有刺的猬
有刺的猬 2021-01-26 12:41

I wish to not include the page number (in the page footer) for the first 10 pages of the report (i.e. page 1-10). Page 1 should read i, page 2 should read ii and page 3 should r

2条回答
  •  囚心锁ツ
    2021-01-26 13:07

    You'll have to manually change the value i.e. putting something similar to the following in the footer:

    IIf(Globals!PageNumber=1, "i", ...
    

    Alternativally you could use a user function try VBA for number to roman numeral

提交回复
热议问题