Jump to content
Claris Engage 2025 - March 25-26 Austin Texas ×

This topic is 6721 days old. Please don't post here. Open a new topic instead.

Recommended Posts

Posted (edited)

When a report is more than page, I would like to have "continued" appear on the preceeding (but not last) page in FileMaker 6 for Macs and PCs.

Any clear advice on accomplishing this would be greatly appreciated:)

Thanks

Edited by Guest
Posted

Define an unstored calculation field (result is Text) =

Case ( Get ( RecordNumber ) < Get ( FoundCount ) ; "continued" )

Place the field in the footer. Note that this is version 7 syntax - you need to use the corresponding Status functions in earlier versions.

Posted

I tried the following calc:

Case( Status( CurrentPageNumber) < Status( CurrentFoundCount) , "continued" )

but it displayed "continued" on a one-pager; not sure what I am missing.

this: Case( Status(CurrentRecordCount) < Status( CurrentFoundCount) , "continued" )

and this: Case( Status(CurrentRecordNumber) < Status( CurrentFoundCount) , "continued" )

would not display anything.....

Posted (edited)

I'm thinking you'd have to use a script to go to Last Record and get page number there and store that in a global to be used as:

Case( Status(CurrentPageNumber) < Table::GlobalFieldHoldingMaxPageNumber, "continued...")

Edited by Guest

This topic is 6721 days old. Please don't post here. Open a new topic instead.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.