Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
Alarkis
Contributor III
Contributor III

Rename Null value in chart

I got chart that uses 2  different expressions together and the null dimension is from the second expression and i want to rename from null to something else.

Chart:

Alarkis_0-1606031244871.png

Currently used expression for dimension:

=if(IsNull(TYPE),'Test',TYPE)

 

 

 

Labels (4)
1 Solution

Accepted Solutions
Alarkis
Contributor III
Contributor III
Author

Solved by creating field 'Value' as DIMNAME from source table before concatenation then Applymap() dimension table to fact table to avoid synthetic keys

View solution in original post

4 Replies
MayilVahanan

Hi @Alarkis 

Null values occurs due to data model design. Might be, subset ratio is not 100% between dim table & measure table. so there is change to get null values in the front end. 

Try to fix this null values in the backend.

Might be, below will help if its comes from same table

NullAsValue DimField;

Set NullValue = 'NA';

Thanks & Regards, Mayil Vahanan R
Please close the thread by marking correct answer & give likes if you like the post.
Alarkis
Contributor III
Contributor III
Author

this is not null value its null dimension because other part of expression is not included in the chosen dimension

measure is like this count(expresion1) + sum (expresion2)

the dimension is related to expression 1.

Not from same table.

 

MayilVahanan

Hi @Alarkis 

Can you provide the sample data \ qvw file.

Thanks & Regards, Mayil Vahanan R
Please close the thread by marking correct answer & give likes if you like the post.
Alarkis
Contributor III
Contributor III
Author

Solved by creating field 'Value' as DIMNAME from source table before concatenation then Applymap() dimension table to fact table to avoid synthetic keys