Hi,
Just came across fact that when I am applying query level filter using "Not in list" operator, Null values are also exclude.
Example:
CITY | SALE |
A | 10 |
B | 20 |
C | 50 |
D | 5 |
E | 10 |
NULL | 15 |
SUM | 110 |
I don't want to bring city A,B and C detail in report so I applied query filter CITY Not in list ("A";"B";"C").
When I refreshed report what I got is this :
CITY | SALE |
D | 5 |
E | 10 |
SUM | 15 |
I was expecting :
CITY | SALE |
D | 5 |
E | 10 |
NULL | 15 |
SUM | 30 |
Is this normal behavior of query filter or a bug?
Workaround Iam using to get desired result by adding additional query filter "CITY is null".
Example:
Query filter:
CITY Not in list ("A";"B";"C")
or CITY is null
Only by using above filter I am able to get following :
CITY | SALE |
D | 5 |
E | 10 |
NULL | 15 |
SUM | 30 |