Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Discover how organizations are unlocking new revenue streams: Watch here
cancel
Showing results for 
Search instead for 
Did you mean: 
ali_hijazi
Partner - Master II
Partner - Master II

Null values of a dimension

Hello

got a pivot table in which a dimension has null values

what I want is show the label 'Others' instead of '-'

is it possible to make this selectable?

please advise

I can walk on water when it freezes
5 Replies
tresesco
MVP
MVP

In the presentation tab define Null Symbol as -'Others'

djallelsadki
Partner - Creator
Partner - Creator

Hi,

try a transformation in the script like below

if(isnull(dimension),'Others',dimension) as dimension

D.Sadki

SunilChauhan
Champion II
Champion II

if(isnull(Fieldname),'Others',Fieldname) as Fieldname


or


if(len(Fieldname)=0,'Others',Fieldname) as Fieldname


or



if(len(trim(Fieldname))=0,'Others',Fieldname) as Fieldname


or


if((Fieldname)=' ','Others',Fieldname) as Fieldname

Sunil Chauhan
partenope
Partner - Creator II
Partner - Creator II

If you need to "select" null values too, you can read the Help searching "NullAsValue"

SunilChauhan
Champion II
Champion II

ya i am agree with him

NullAsValue A,B;

Set NullValue = 'NULL' ;

you can customize  'NULL' for example 'Blank '

Sunil Chauhan