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

Recommended Posts

Posted

I have got a field "Copy Cost" which has the following calculation.

If(PatternCount(Payment Info; "Make Good"); 0; If(GetAsNumber(Count of words in text field) <= 20; 19; Count of words in text field * .95))

I now need to incorporate the following calculation into the first one.

If(PatternCount(AD PRODUCTION; "Text Only Ad"); If(GetAsNumber(Count of words in text field) <= 20; 50; (Count of words in text field - 20) * .95 + 50))

Thanks in advance for any help.

Posted

Let( C = WordCount(Ad Copy & " " & Name of individuals in Ads); Case( Payment Info = "Make Good"; 0; If( AD PRODUCTION = "Text Only Ad"; 50; 19 ) + .95 * (C - 20) * (C > 20) ) )

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