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

Announcements
AWS Degraded - You may experience Community slowness, timeouts, or trouble accessing: LATEST HERE
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Select Field1 When Field2 is selected

Hello, is there a way to select a field with the contents of another selected field?

I have Production Tree, ItemCodes with ChildItems (One to Many on the same table). When the user selects a ChildItem I want to select ItemCode with the current childItem selected.

Thank you,

Jose.

1 Solution

Accepted Solutions
johnw
Champion III
Champion III

I have an application where I have two dates that I want to keep in sync but not actually connect in the model. I use macro code like this, but it could probably be done with an action in version 9:

sub setDate()
ActiveDocument.getField("Display Date").selectValues ActiveDocument.getField("Date").getSelectedValues(1200)
end sub

View solution in original post

4 Replies
achiever_ajay
Contributor III
Contributor III

Hi,

Can you explain your requirement, little detailed..

As per QVW, if one field is linked to other, then it will filter automatically.

Not applicable
Author

Hi Jose,

see if below helps you:

http://community.qlik.com/forums/t/25932.aspx

Cheers, Lukas

Not applicable
Author

Hi thereverend,

Use 'select possible ' on ItemCode field when select ed in to childItem field

Hope are looking for this only

Thank You

Rahul

johnw
Champion III
Champion III

I have an application where I have two dates that I want to keep in sync but not actually connect in the model. I use macro code like this, but it could probably be done with an action in version 9:

sub setDate()
ActiveDocument.getField("Display Date").selectValues ActiveDocument.getField("Date").getSelectedValues(1200)
end sub