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

Recommended Posts

Posted

I have a table with 2 fields, one called Charge and another called type.

The Type field is a drop down menu with the following selections: Debit, Cash, Check, Finance

So the table looks like this:

Debit $500(Charge Field)

Cash $200(Charge Field)

Debit $300(Charge Field)

Total (Summary Charge Field)

 

I'm trying to create a field that just summarizes the Charge Field when Type = Debit. So I can break down and summarize each type separately.

What is the best way to do this?

Posted

One possible approach is to make a calculated field:

Case( Type = "Debit" ; Charge )

... and summarize that.

Posted (edited)

I'm trying to create a field that just summarizes the Charge Field when Type = Debit. So I can break down and summarize each type separately.

What is the best way to do this?

The best way is to produce a summary report. Find the records you want to report on (e.g. by date range), sort them by Type, and show them in a layout that has a sub-summary (when sorted by Type) part.

Place a summary field defined as Count of [Type] (or any other field that cannot be empty) inside the sub-summary part. The same field, when placed in a grand summary part, will show the total count.

You can delete the body part of the layout, to show only summary values.

 

 

Edited by comment

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