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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
nishanthi_8
Creator
Creator

How to create a filter where the particular column doesnt exist?

I dont have a column called status which consists of whether the employee has been assigned or not - assigned to Project. But i explicitly want to create a column from script side as Status - Assigned / Not - Assigned as a filter and once it is selected the Particular name should be displayed. How it can be achieved? I tried with the mapping load it gives the names of assigned. But I dont want in that case. Instead i want the filter to contain to assigned and not assigned and based on that selection particular name should be displayed.

5 Replies
Anonymous
Not applicable

Create a inline field like this:

Load * Inline

[Status

Assigned

Not Assigned

];

Use it as a filter at front end and make the data conditional to display

nishanthi_8
Creator
Creator
Author

any other alternative method ?

Anonymous
Not applicable

I think Inline is the best option for same

Not applicable

Or if you can write IF condition in your script: IF(cond, 'Assign','Not Assign') As Status

oscar_ortiz
Partner - Specialist
Partner - Specialist

You can try an if statement in your script.

Something like:

If( [ Your Condition], 'Assigned', 'Not Assigned' ) as Status