Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
i have the below sql code :
where (IB <>0 and IB is not NULL)
or (Consumption<> 0 and consumption is not NULL);
and when i write in qlikview i am getting 0 records.. Qlikview code is below on:
where (IsNull(IB) and IB<>'0') or (IsNull(Consumption) and Consumption<>'0')
Can you please tell me where i am doing wrong.
Thanks,
Bharat
I think the SQL query is saying is not null, but you are doing IsNull in QlikView?
May be you want this
Where (NOT IsNull(IB) and IB <> '0') or (NOT IsNull(Consumption) and Consumption<>'0')
I think the SQL query is saying is not null, but you are doing IsNull in QlikView?
May be you want this
Where (NOT IsNull(IB) and IB <> '0') or (NOT IsNull(Consumption) and Consumption<>'0')
Thank you sunny bhai.. just saw that and replaced My bad..
No problem