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

Announcements
Join us in Bucharest on Sept 18th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
neon
Contributor II
Contributor II

how to remove blank cells from a column from qvd using qlik sense.

how to remove blank cells from a column using qlik sense in a table.

Labels (1)
1 Solution

Accepted Solutions
Thiago_Justen_

Hi there,

I'll suggest you some tries based on my previous experiences.

In Load script you could try:

DataTable:

Load

YourFields

From YourQVD Where Len(Trim(BlankField))>0;

Or

DataTable:

Load

YourFields

From YourQVD Where Not IsNull(BlankField);

Then you can save a new qvd without those blank cells.

Hope it helps you.

Thiago Justen Teixeira Gonçalves
Farol BI
WhatsApp: 24 98152-1675
Skype: justen.thiago

View solution in original post

1 Reply
Thiago_Justen_

Hi there,

I'll suggest you some tries based on my previous experiences.

In Load script you could try:

DataTable:

Load

YourFields

From YourQVD Where Len(Trim(BlankField))>0;

Or

DataTable:

Load

YourFields

From YourQVD Where Not IsNull(BlankField);

Then you can save a new qvd without those blank cells.

Hope it helps you.

Thiago Justen Teixeira Gonçalves
Farol BI
WhatsApp: 24 98152-1675
Skype: justen.thiago