Problem with the SUM Function
I try to use in the memo this formula:
[Sum([tabeleTemp1."TEMP1"], DetailData1)+ Sum([tableTemp2."TEMP2"], DetailData2)]
And the result is always NULL
What's wrong?
[Sum([tabeleTemp1."TEMP1"], DetailData1)+ Sum([tableTemp2."TEMP2"], DetailData2)]
And the result is always NULL
What's wrong?
Comments
Syntax
[Sum([tabeleTemp1."TEMP1"], DetailData1)+ Sum([tableTemp2."TEMP2"], DetailData2)]
add square brackets around each member of the expression and then around whole expression. you may have to use the ,1 param after the band name as well.
Sum([tabeleTemp1."TEMP1"], DetailData1,1)] + [Sum([tableTemp2."TEMP2"], DetailData2,1)
in some extreme cases you may have to store the value of one member of the expression in your own variable, at the correct footer, and use it in conjunction with the other member.