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

Recommended Posts

Posted

I have 10 repeating fields labeled "invoice match", these all correspond with 10 repeating fields labeled "product id".

In the invoice match field there is a formula which should return "Inv Match" when the statement is TRUE. Individually they work fine, each repeating field is corresponding to the right product id. However, I need to be able to do a find that will find any record that has any product id with its corresponding Inv Match True.

I did one field with the simple calculation of, if(Invoice Match ="","","Invoice Pending") , but that is only returning the results from the first product ID, it does not look at the other 9 repeating fields. I need it to return "Invoice Pending" if ANY of those fields are True.

Thanks!

Posted

If(GetRepetition (Invoice Match , 1 ) and GetRepetition (Invoice Match , 2 ) and GetRepetition (Invoice Match , 3 ) and GetRepetition (Invoice Match , 4 ) and GetRepetition (Invoice Match , 5 ) and GetRepetition (Invoice Match , 6 ) and GetRepetition (Invoice Match , 7 ) and GetRepetition (Invoice Match , 8 ) and GetRepetition (Invoice Match , 9 ) and GetRepetition (Invoice Match , 10 ) = "","","Invoice Pending")

or

If(Invoice Match and Invoice Match[2] and Invoice Match[3] and Invoice Match[4] and Invoice Match[5] and Invoice Match[6] and Invoice Match[7] and Invoice Match[8] and Invoice Match[9] and Invoice Match[10] = "","","Invoice Pending")

or

make your field with your calc:

if(Invoice Match ="","","Invoice Pending")

a repeating field with 10 rep

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