Hello,
I'm trying to create a button in a report that links to the "PageMax - 1" page using "Page:Number".
Is there any way to do this?
Thanks!
Hello,
I'm trying to create a button in a report that links to the "PageMax - 1" page using "Page:Number".
Is there any way to do this?
Thanks!
Maybe something like this?
Page:@PageMax-1@
Thanks! It turns out it works, but only when setting the value as static. I don’t understan why, though...
It's an order of operations/evaluation thing.
With a dynamic data key, you're providing an expression that will be evaluated _to return whatever value to display (with no further evaluation).
With an "inline" keychain expression (using the @
you're returning an expression that will be evaluated at report runtime.
At least, that's what I think is happening