Problem <Page> =<TotalPages#>
Hello im try to show some fiels in last page only on pagefooter
i try to code something like this
IF <Page> =<TotalPages#> THEN
Memo1.VISIBLE=TRUE
Memo2.VISIBLE=TRUE
else
Memo1.VISIBLE=FALSE
Memo2.VISIBLE=FALSE
end if
but not work
I try and code funcion on text object like this
[IIF(<Page#>=<TotalPages#>,"Ok","Not Ok")]
and did not work
always return the one stage in all pages "Not Ok"
what can i do , is any setting to check ?
edit
IF <Page#> =<TotalPages#> THEN
IF <Page> =<TotalPages> THEN
not work too
i try to code something like this
IF <Page> =<TotalPages#> THEN
Memo1.VISIBLE=TRUE
Memo2.VISIBLE=TRUE
else
Memo1.VISIBLE=FALSE
Memo2.VISIBLE=FALSE
end if
but not work
I try and code funcion on text object like this
[IIF(<Page#>=<TotalPages#>,"Ok","Not Ok")]
and did not work
always return the one stage in all pages "Not Ok"
what can i do , is any setting to check ?
edit
IF <Page#> =<TotalPages#> THEN
IF <Page> =<TotalPages> THEN
not work too
Comments
Working perfectly for me