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 4632 days old. Please don't post here. Open a new topic instead.

Recommended Posts

Posted

I have a portal that shows me the packing slips of a job and it includes the fields "billed checkbox" and "quantity shipped" fields. I frequently partial bill these jobs, so some of the packing slip records have the "billed checkbox" checked from previous partial bills.

I would like a "partial bill qty" field on my invoice to auto enter only the sum of "quantity shipped" if the "billed checkbox" is unchecked. So far, I've only managed to come up with calculations that keep summing up all the fields and I can't figure out a way to omit the values in the "quantity shipped" fields if the "billed checkbox" is checked. Any ideas?

Posted

Easiest solution would be to create a calculation field in the PackingSlips table that is defined as “quantity shipped if not billed" and sum up this field in Jobs.

Posted

You need another calc field in the invoice line items records that only shows the quantity shipped if the billed checkbox ic unchecked:

Quaitity_Unbilled = Case( isempty( billed ) ; Quantity )

In the invoice table, make a total field that Sums() the unbilled calculation.

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