Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi all,
I am looking to count LOCATION = London where L_ID is Null
LOCATION L_ID
London -
North London 1214
London 2485
London -
London 4789
NW London -
The expression I had written doesnt seem to work:
Count(IF(LEN(L_ID < 0) , LOCATION = 'LONDON'))
Thanks.
Koushik.
try:
count({<Location={'London'},L_ID-={'*'}>} Location)
try this
Count(IF(isnull(L_ID) , LOCATION = 'LONDON'))
Nope, doesnt work.
In the above table if you see the null values are 3 therfore the Loctaion = 'LONDON' cannot exceed 3 but I get more than 3 values.
try:
count({<Location={'London'},L_ID-={'*'}>} Location)
Thanks Gysbert Wassennar