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: 
kfloresc
Contributor II
Contributor II

Remove fields where multiple columns strings are the same

Hello I'm having trouble with filtering out some data.

I have a table with about 10 different columns.

I need to find a solution where I remove fields in columns w,x,y,z when they have the value 'None'

 

 

Labels (2)
2 Solutions

Accepted Solutions
QFabian
MVP
MVP

Hi @kfloresc , you can start with this as an option :

Load

w,x,y,z

morefields

From yoursource

Where

w <> 'None'  and

x <> 'None'  and

y <> 'None'  and

z <> 'None';

 

Greetings!! Fabián Quezada (QFabian)
did it work for you? give like and mark the solution as accepted.

View solution in original post

kfloresc
Contributor II
Contributor II
Author

Thank you Fabian! That was the answer, for some reason I couldn’t do it in the select area and had to do it under the load section! Again thank you so much!

View solution in original post

3 Replies
QFabian
MVP
MVP

Hi @kfloresc , you can start with this as an option :

Load

w,x,y,z

morefields

From yoursource

Where

w <> 'None'  and

x <> 'None'  and

y <> 'None'  and

z <> 'None';

 

Greetings!! Fabián Quezada (QFabian)
did it work for you? give like and mark the solution as accepted.
kfloresc
Contributor II
Contributor II
Author

Thank you Fabian! That was the answer, for some reason I couldn’t do it in the select area and had to do it under the load section! Again thank you so much!

QFabian
MVP
MVP

Excelent @kfloresc , all of that is in the script, or load section.

Please give like or aproved as solution

Greetings!! Fabián Quezada (QFabian)
did it work for you? give like and mark the solution as accepted.