Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Is it possible to add drop down at a row level?

I have a straight table that displays a set of parameters . I want to include a drop down in the last column with Yes/No options.

If the parameter condition is satisfied, the user selects yes, else no.

Is it possible to achieve this in Qlikview?

Thanks in advance!

1 Solution

Accepted Solutions
vishsaggi
Champion III
Champion III

You can use an Inputfield in you data model for one of the empty fields and let user type in Yes/No based on the parameter selections.

Before your load statement add

Inputfield Status;

LOAD * INLINE [

ID, Category, Status

1, ABC

2, BCD

3, CDE

];

Using a table box add these fields and your status will be editable.

View solution in original post

1 Reply
vishsaggi
Champion III
Champion III

You can use an Inputfield in you data model for one of the empty fields and let user type in Yes/No based on the parameter selections.

Before your load statement add

Inputfield Status;

LOAD * INLINE [

ID, Category, Status

1, ABC

2, BCD

3, CDE

];

Using a table box add these fields and your status will be editable.