Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

button for selection

Hi all

i have codes (SUB;_CODES) that start with from 1 to 99 like 1A, 2A, 99Z

i want to have a button that when i cilick i want to select 11-19 and 31-39

i did it only for 11-19 at actions side

but i couldnt do for both of them

can you help me please

1 Solution

Accepted Solutions
Not applicable
Author

Field: Product,   and

Search String: '(A|B|C)'

View solution in original post

2 Replies
kouroshkarimi
Creator III
Creator III

Maybe use a macro?

 

sub ButtonSelection

ActiveDocument.Fields("FieldName").Select "1*"
ActiveDocument.Fields("FieldName").ToggleSelect "3*"
end sub

And then add action External / Run Macro to the button.

Not applicable
Author

Field: Product,   and

Search String: '(A|B|C)'