September 27, 200520 yr 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.
September 27, 200520 yr Author Here is a sample file with the relevant fields. I have changed the field name "Copy Cost" to "Copy Cost Picture Ad with Text" SampleDB1.fp7.zip
September 27, 200520 yr 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) ) )
Create an account or sign in to comment