The problem is that Access does not trigger the request:
FORMULA:
(SELECT Sum(tblPok.PokSumCom) AS [Sum-PokSumCom] FROM tblPok WHERE [Client] = <Client>) + (SELECT Sum(tblCentrPok.PokSumCom) AS [Sum-PokSumCom] FROM tblCentrPok WHERE [Client] = <Client>) If you just take SELECT Sum(tblPok.PokSumCom) AS [Sum-PokSumCom] FROM tblPok WHERE [Client] = <Client> then everything works for one table and the corresponding row. Accordingly, if you add both sums (as in the initial formula) and one of the NULL results, nothing works at all.
The essence of the question: how to make the answer set to NULL automatic value of 0?
I tried various options: ISNULL(SUM(),0) , COALESCE(SUM(),0) , etc. All in vain.
Are there any other options?