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

Announcements
Write Table now available in Qlik Cloud Analytics: Read Blog
cancel
Showing results for 
Search instead for 
Did you mean: 
tresesco
MVP
MVP

Drop - down in the table cell

I have a simple table like below:

F 1F2
Data
AXX11
AYY22
AZZ30
BZZ10
BYY40
CXX100
.........

Now the user wants to be able to choose from the F2 while F1 is static with all members.

F1F2Data
Adrop-down selection(with XX,YY,ZZ)accordingly
Bdrop-down selection(with XX,YY)accordingly
Cdrop-down selection(with XX, ...)

accordingly

Note: the important ask from user is the 'DROP-DOWN' against each cell.

Any idea would be much appreciated!

Thanks.

5 Replies
tresesco
MVP
MVP
Author

Multibox could be an option, but for that i have to have multiple fields breaking F2, so it's a model change. If anybody can suggest a workaround without changing the model, would be great.

Thanks.

tresesco
MVP
MVP
Author

Hello experts,

Any idea?

marcus_sommer

I don't know if I have you right understand, but perhaps it is as approach helpful:

dynamic dimension:

if(getselectedcount(F2) > 0, concat(F2, ', '), F2)

dropdown selection with a predefined valuelist in a inputbox-variable

= subfield(concat(F2, ','), ',', 2) & ';' & subfield(concat(F2, ','), ',', 2)

- Marcus

tresesco
MVP
MVP
Author

Thank you Marcus for your response. Let me try explain in a different way: for F1 values (A,B,C..) possible F2 values are (XX,YY,ZZ),(XX,YY) and(XX,..) respectively. Though they are from a single field, ideally the selection would be available from F1 (XX,YY,ZZ..) and if you select 'XX' that would associated with all A,B and C. But the user wants to be able to select members individually for A, B and C. Which can be done by a concatenation like F1 & F2 (AXX,BXX,CXX,AYY...). But again the user wants the selection separately against each F1 member, that is AXX, AYY, AZZ would appear in front of 'A' (in the table) and BXX,BYY,BZZ would appear in front of 'B' and so on. (Please refer my earliest post along with this explanation - which could produce some meaning.)

Now, I am trying the same to achieve using alternate state. If you get some other idea, please let me know.

Thanks.

marcus_sommer

The user want save one selection step, instead select F1 or F2 and select possible values from the other dimension, select it in one step? This could only solved with a concatenation from F1 & F2, but why, which advantages? Or should the table also changed - this could perhaps solved with two tables which showed depend from the selection?

- Marcus