Jump to content
Server Maintenance This Week. ×

Simple printing question


merkaba22

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

Recommended Posts

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
Link to comment
Share on other sites

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.

Link to comment
Share on other sites

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.....

Link to comment
Share on other sites

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
Link to comment
Share on other sites

This topic is 6518 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.