Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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
In the presentation tab define Null Symbol as -'Others'
Hi,
try a transformation in the script like below
if(isnull(dimension),'Others',dimension) as dimension
D.Sadki
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
If you need to "select" null values too, you can read the Help searching "NullAsValue"
ya i am agree with him
NullAsValue A,B;
Set NullValue = 'NULL' ;
you can customize 'NULL' for example 'Blank '