Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I have a chart where I am using a calculated dimension: : if(isnull(TargetFlag),' null','not null').
This is working fine in the chart as a column, however when i give the same condition in the listbox/multibox it doesn't show me the option 'null'.
Also clicking 'null' in the chart doesn't filter it. Not null works fine. Please advise.
Why don't you create this in the script?
LOAD if(isnull(TargetFlag),' null','not null') as NullFlag
NullFlag is not showing 'null'.
Are you doing any joins after your create this flag? If you are, I would suggest to create this flag at the very last resident load
I am doing an outer join.
You Can use the null variables like.
NullAsNull *fieldlist
Or NUllAsValue
Set NullValue = null();
Regards,
Kaushik Solanki
Create this flag in a resident load
Table1:
LOAD ...
Join (Table1)
LOAD ...
FinalTable:
LOAD *,
YourFlagExpression
Resident Table1;
Drop Table Table1;
I don't think that will work if this variable is declared before the join
I need to keep the two tables separate.
Not dropping Funnel table... it will still be there... Can you post your script as text instead of image?