Jump to content
Claris Engage 2025 - March 25-26 Austin Texas ×
The Claris Museum: The Vault of FileMaker Antiquities at Claris Engage 2025! ×

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

Recommended Posts

  • Newbies
Posted

I have a invoice layout that only has room for 10 portal rows. I'd like the last portal row to show something like "X addition items" if there are more than 10 items in the portal. If someone could point me to some examples of how this might be done, it would be very helpful.

 

Thanks.

 

 

Posted

I agree with comment, but I have had customers request this.

 

One solution is, create a calc field and put it below the portal (not on the last row):

 

Let( rows = Count(related::id) - 10 ;

Case( rows > 0 ; rows & " additional items" ) )

 

The downside of doing something like this is that you can't take advantage of object auto-resizing.

 

Welcome to the forums.

  • Newbies
Posted

Why don't you simply set up the portal to show a scroll bar?

I do have a scroll bar in the main layout but this is for a printable view that gets handed out to techs. 

 

I agree with comment, but I have had customers request this.

 

One solution is, create a calc field and put it below the portal (not on the last row):

 

Let( rows = Count(related::id) - 10 ;

Case( rows > 0 ; rows & " additional items" ) )

 

The downside of doing something like this is that you can't take advantage of object auto-resizing.

 

Welcome to the forums.

Thanks, I'll give that a try.

Posted

this is for a printable view that gets handed out to techs

 

Then why not print from the child table and print all the required records? Surely that would be more useful than "there are 6 more items that could be important but we're not going to tell you anything about them"?

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