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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Select in Field Action

I want to have multiple selections in a list box when I open the Qlikview file.

Inside the OnOpen trigger, does anyone know the correct syntax of the search string of the action Select in Field?

Labels (1)
1 Solution

Accepted Solutions
Not applicable
Author

(selection1|selection2)

IN YOUR TERMS

(APPLE|ORANGE)

View solution in original post

5 Replies
Not applicable
Author

(selection1|selection2)

IN YOUR TERMS

(APPLE|ORANGE)

Not applicable
Author

Thanks.

I've another Question.

If the list box is sorted by Text A->Z, what's the search string like if I want to select the top 3 by default?

Not applicable
Author

HAS THE LIST BOX GOT AN EXPRESSION AS WELL OR JUST A LIST BOX WITHOUT EXPRESSIONS?

Not applicable
Author

It's a list box without expressions.

Actually, it's a list of years as attached and I want to select the recent three years by default.

Not applicable
Author

II WOULD -----------------------------

LEFT JOIN (MASTER ALENDER)

LOAD  ROWNO() AS CURRENTYEAR,

FISCALYEAR

ORDER BY FISCALYEAR DESC;

----------------------------

IN THE MASTER CALENDER THEN YOU WILL HAVE ROWNO VALUES AGAINST EACH YEAR. AND CAN DO SELECTION BASED ON CURRENTYEAR FIELD.