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

Announcements
Qlik GA: Multivariate Time Series in Qlik Predict: Get Details
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

How to select two values using a trigger ?

Hello, I have to select two values of a field, when I press the buttom . help me please!

Action.PNG

Regards.

1 Solution

Accepted Solutions
Aurelien_Martinez
Partner - Specialist II
Partner - Specialist II

Hi,

That you want?

2013-11-15_165022.png

Regards,

Aurélien

Help users find answers! Don't forget to mark a solution that worked for you!

View solution in original post

8 Replies
datanibbler
Champion
Champion

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

jvitantonio
Specialist III
Specialist III

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

Not applicable
Author

The second action will override the first action!

Not applicable
Author

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.

Aurelien_Martinez
Partner - Specialist II
Partner - Specialist II

Hi,

That you want?

2013-11-15_165022.png

Regards,

Aurélien

Help users find answers! Don't forget to mark a solution that worked for you!
Not applicable
Author

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

DavidFoster1
Specialist
Specialist

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')

Not applicable
Author

Thanks so much!!