0

NL(SUM) limitation workaround?

Just thinking out loud, because I don't have an universal connector to test with.

What if you use NL("Filter") to retrieve the values you need.
Use the outcome of that function with NP("Join") and as a seperator you use the "+".
That will create a string with values and a plus between them.
To evaluate that string you need to define a name with the formula EVALUATE(). Unfortunately that function doesn't work directly in a cell. Don't ask me why :)
That name will do the calculation of the values in the string and can be used in excel formulas.

D7=NL("Filter","Table","Numeric field disguised as text","Filterfield1","Filter1")
D8=NP("Join",D7,"+")
Create a name within Excel with the formula =EVALUATE($D$8), call it e.g. SummedText
D9=SummedText

HTH

rmw

3 comments

Please sign in to leave a comment.