nested Frank

Any idea if this should work in custom formula? :

Frank(“(Eval(Frank(“OperCashFlTTM”,#Sector,#desc) < 20,2,-1))”,#all,#asc)

the general syntax for formula should look like this:
Frank(“eval1(frank1)” + eval2(frank2 or frank3) + eval …)

error mesage is : Error near ‘Frank’: FRank - Missing operands

It looks like nested frank in custom formula is not supported?

Nesting quoted strings do not work on the site at all.

You might want to try a screen with custom variables:

SetVar(@e1,eval1(frank1))
SetVar(@e2,eval2(frank2 or frank3))
Frank("@e1+@e2",#all,#asc)

Thank you.