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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Display field that have no data

Hi All,

I have one field. But not all field got value. How can I display the field in dimension of pivot/straight table.

I want to show the fields even though there is no data on it.

Thanks.

1 Reply
swuehl
MVP
MVP

Could you post some sample records and the result you want to achieve in your chart table?

I assume the field does not show a value in all records, so you have some NULL in your data.

Maybe test for NULL in your load script and set the value of these records:

LOAD

     If(Len(Trim(FIELD)), FIELD, 'Dummy') as FIELD,

     ...