Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

How do you assign values to nulls ?

Hi,

I have data for many thousands of leads drawn into QV from Salesforce. For some of the leads, certain information is missing and the fields in salesforce have null values (literally, no value. a blank cell). For example, for the leads' marketing sources we have PPC, Media, WOM, Tradeshow, etc. and there are also many leads with just no value whatsoever.

When I create a chart in QV (for example a stacked bar chart) to show the number of leads generated per month from the different marketing source (the dimension are a time dimension and the marketing source, where the month of lead generation is the horizontal axis), the null leads do show in the stacked bar, but do not show in the legend whatsoever.

I tried to map the marketing source and assign "Unknown" to nulls (just created an excel file with the name of the marketing source on the left column and the name I want to see in QV on the column next to it), but that doesn't work. So, I'm turning to you guys. Any idea how to make it happen and have the null values appear in the legend as "Unknown" ?

Thanks!

1 Solution

Accepted Solutions
Not applicable
Author

Hello Al On,

please check out the example app (with your data) showing a simple solution with applymap().

HtH

Roland

View solution in original post

44 Replies
salto
Specialist II
Specialist II

Hello,

as far as I know, the handling of NULL values in QV dos not always give the expected results when the Isnull function is used. So I would try using:

Len(Field)=0

or

Len(Trim(Field))=0

to check if avalue is null and the assign it the 'Unknown' value:

if(Len(Trim(Field))=0,'Unknown',Field) as...

Hope this helps.

Anonymous
Not applicable
Author

While loading data try to assign some value to null values s

load

if(isnull(field_name),'Unknown',field_name) as field_name

from ............

Hope this will healp you aut.

Regards

Nitin

Not applicable
Author

Hi Al On,

try to use this within a LOAD in script:

LOAD ...

if ( Len(Input) > 0, Input, ' -unknown- ')) AS Input,

....

Note:

- It is better to use Len() than check if a field is empty or null. This works not always properly.

- May be you want to use "Len(Trim(Input))" as a stronger version

- start your Defaultvalue with a blank; then it appears on top in Listboxes

Regards

Roland

qlikpahadi07
Specialist
Specialist

Hi Al On

You can simply try this

Load

if(Len(Column) > 0,Column) as Column Name,

....

.

..

.

.


Not applicable
Author

Hi, thanks for answering.

How would you modify the script to include that? Keep in mind I still want to use the conversion table in excel (I use it to fix spelling mistakes, merge similar categories, etc.)

[Lead Types Conversion Map]:  //AL 11/12/13

Mapping

LOAD [Lead Type],

     [Should Be]

FROM

[..\1_Resources\Lead_Types_Conversion_Table.xlsx]

(ooxml, embedded labels, table is Sheet1);

Map [Lead Type] using [Lead Types Conversion Map];

Thanks for your help

Not applicable
Author

thanks for answering

Please see my comment here:

http://community.qlik.com/message/435002#435002

Not applicable
Author

thanks for answering

Please see my comment here:

http://community.qlik.com/message/435002#435002

Anonymous
Not applicable
Author

in mapping load only , you can use conditions to check with the null or length conditions .

Mapping

LOAD [Lead Type],

    if(isnull( [Should Be]),'Unknown', [Should Be]) as  [Should Be]

FROM

[..\1_Resources\Lead_Types_Conversion_Table.xlsx]

(ooxml, embedded labels, table is Sheet1);

or

Mapping

LOAD [Lead Type],

    if(len(trim( [Should Be]))=0,'Unknown', [Should Be]) as  [Should Be]

FROM

[..\1_Resources\Lead_Types_Conversion_Table.xlsx]

(ooxml, embedded labels, table is Sheet1);

Regards

Nitin

salto
Specialist II
Specialist II

Hi,

try this:

[Lead Types Conversion Map]:  //AL 11/12/13

Mapping

LOAD

     if(Len(Trim([Lead Type]))=0,'Unknown',[Lead Type]) as [Lead Type],

     [Should Be]

FROM

[..\1_Resources\Lead_Types_Conversion_Table.xlsx]

(ooxml, embedded labels, table is Sheet1);

Map [Lead Type] using [Lead Types Conversion Map];

Hope this helps.