Reputation: 3358
I have one section that can't appear in th second page (Can only appear in the first page)
First Page = All of Above.
Second Page = Only "Page Header a" and "Details".
I'm trying to use this formula: (this one is inside "Page Header b")
if {Page Number} <> "1" then
true //Supress
else
false
But I'm unable to reach {Page Number}, I already tried to use {PageNumber}...
So, How can I get the page number inside the formula workshop?
Upvotes: 2
Views: 3149
Reputation: 7287
PageNumber
is a keyword and doesn't require brackets. Also, it's a numeric data type, so your formula should just be PageNumber<>1
Upvotes: 4