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

Recommended Posts

Posted

I'm looking at doing a Calc Field I think to return based on other info.

We have two tables.. Job and Part

The Job table we have a layout that has a portal for the Part Table. We are keying of "JOB ID MATCH FIELD"

We have a layout that on Job to show us the related Parts. Each part has a status... "In Progress" Or "Complete"

I'm wanting a way to return at the Job table the Overall Status of all the Parts.

So if all Parts are marked "In Progress" it returns "In Progress" If all the Parts are "Complete" it returns "Complete"

but if some are "Complete" and others are "In Progress" I would like it to return "Partially Done"

 

Any tips would be helpful..

I'm using Filemaker 14 at this time.

Thanks

 

Posted (edited)

Try =

Let (
shortList = FilterValues ( "In Progress¶Complete" ; List ( Part::Status ) )
;
Case (
shortList = "In Progress¶Complete¶" ; "Partially Done" ;
shortList = "In Progress¶" ; "In Progress" ;
shortList = "Complete¶" ; "Complete"
)
)

 

Edited by comment
Posted

I'm getting an error about to many Parameters Error.. See screen shot. 

Screen Shot 2015-05-13 at 6.46.48 PM.png

Posted

Your right.. I changed the Part::Status to read Parts::Part Status.

Other then that I did a copy and past.

This time I did a copy and past to and editor then copy and pasted it to filemaker.. No errors.

But it's not returning anything for the calc.

Posted

Question? How does the formula tie to the Relationship?

Screen Shot 2015-05-13 at 7.24.53 PM.png

Posted

Your file worked... So I went back to my file and found the reason.

I had an extra space at the end of the data.... 

 

Thanks so much...

 

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