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

Recommended Posts

Posted

Hello,

i was wondering if someone can help me out with this. Basically i have a summary report base on the field call status. The status field is drown down menu.

I have one calc that is not working me. This how i have it,

i have the fields:

c_Withdrawn Calculation = Status="Withdrawn"

c_cnt_Withdrawn Summary = Total of c_Withdrawn

c_c_cnt_Withdrawn Calculation Unstored, = Sum(c_cnt_Withdrawn)

The calculation works as long I change the Status name to Something else.

any help would be appreciate it.

Posted

You need to add one more field to this so that it can add numeric values.

Create a calculation field: c_StatusWithdrawn = if(c_Withdrawn = "Withdrawn" , "1" , "0")

Then base your summary fields on this field instead so that any record marked as Withdrawn will have a 1 displayed and thus added to a total.

Posted

Brian,

I try it the way you say and it doesnt work. The crazy part is that i i used a different status and it work fine.

is Withdrawn a FM Reserve word?. i am using FM 6.0 by the way.

thanks for you help. i thnking of rename the status to WD-Withdrawn since that work for me.

thanks

victor

Posted

c_StatusWithdrawn = if(c_Withdrawn = "Withdrawn" , "1" , "0")

There is no need for that. The existing calculation field:

c_Withdrawn = Status="Withdrawn"

already provides the same result: 1 if Status = "Withdrawn", 0 otherwise.

Victor,

I cannot see any problems with the names, either. The only thing I don't understand is:

c_c_cnt_Withdrawn Calculation Unstored, = Sum(c_cnt_Withdrawn)

What is summing a summary field supposed to accomplish?

Posted

Comment,

I used that field to the sum of all withdrawns and display it in sub-summary report i create. I include screen shot of my report.

I just end up rename the status field and it is work fine now.

Thanks all for the help. i really appreciate it.

thanks

victor

screenshot.jpg

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