Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I have two fields in Qlikview with the same values.
Values:
Field1 Field2
A A
B B
C C
D D
When i select in field 1 value B i like to have field 2 value B also selected.
And when i change a value in Field 1 also field2 must change with same value.
Is this possible and how?
Try like this
=If(GetSelectedCount(Field2) >0, '(' & Concat(DISTINCT '"' & Field2 & '"', '|') & ')')
You can use Triggers to do this...
What trigger?
You have two options
1) Use OnAnySelect trigger
2) Field Event Triggers
Arikel.Code must change with value of field Component . What is my Search string ?
Try like this
=If(GetSelectedCount(Field2) >0, '(' & Concat(DISTINCT '"' & Field2 & '"', '|') & ')')