Skip to main content
Announcements
Qlik Introduces a New Era of Visualization! READ ALL ABOUT IT
cancel
Showing results for 
Search instead for 
Did you mean: 
jblomqvist
Specialist
Specialist

NULLASVALUE function not working on fields that contain Null values in QVD files?

Hello,

Has anyone noticed NULLASVALUE function not working on fields that contain Null values in QVD files?

E.g. If I have data loaded from QVD files and some fields have null values, the NULLASVALUE does not assign a replacement.

It works on other types of data sources.

2 Replies
swuehl
MVP
MVP

Have you tried with an unoptimized QVD LOAD (e.g. using ...WHERE 1=1)?

nizamsha
Specialist II
Specialist II

Hi

As my understanding is correct that u r telling null function is not working in QVD .have u checked in this manner

if(isnull(Urfield)=-1,'Null',urField) as Field

if its not working

if(trim(len(urfield))>=1,urfield,'Null')

anyone will work in your scenario