Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello, I have to select two values of a field, when I press the buttom . help me please!
Regards.
Hi,
That you want?

Regards,
Aurélien
Hi,
is this a serious question? I think I must have missed what your actual difficulty is...
How about adding two actions?
HTH
Best regards,
DataNibbler
Hola,
Puedes crear un campo concatenado Value1&Value2 en tu script y luego haces las seleccion en ese campo.
Saludos
JV
BI Experience | A place to share our Business Intelligence experiences
The second action will override the first action!
the image is a example!.
I need to select two values of a field.
if I add two actions to same field, qlikvew set the last option.
Regards.
Hi,
That you want?

Regards,
Aurélien
Hi,
You can do that with the help of a macro:
Sub Macro
ActiveDocument.GetField("_Campo").Select "ValueOne"
ActiveDocument.GetApplication.Sleep 1000
ActiveDocument.GetField("_Campo").ToggleSelect "ValueTwo"
ActiveDocument.GetApplication.Sleep 1000
End Sub
There are a couple of ways of doing this.
1) Use the pipe-concatenation method.
2) Use multiple actions (use 'select toggle' action not 'select in field')
Thanks so much!!