0
Help with filtering and sum between tables
I'm trying to get a sum of filtered records from another table. What i need is to change the date(2020, 10, 24) with the variable Data Incassi (part of the table i'm working on) but doesnt work..
1 reply
-
I suppose that you just replaced the date(...) function by the name of your variable. It does not work because, inside a "select" statement, the context is not the current record of the table you are working in, but the records of the table you are searching in. So you need to save the value of the field in a variable while in the context of the table you are working in before executing the "select".
let Zdi := 'Data Incassi'
sum(...... 'Record Date' = Zdi .....)
Content aside
- 4 yrs agoLast active
- 1Replies
- 484Views