Hi, here is the description of the status quo. There is multiselect element defined by a token tkn1. Output variable is “value”. The default and initial value is defined as All. All has its static value “*”. There are 2 items to be picked up. “1”, “2”. The syntax of logic using pick up fcn is: token prefix: value IN ( token suffix: ) token value prefix: “”” token value suffix: ““” delimiter: “,” So if user choose these 2 values except All, the token has its value: value IN ("1","2"). If I use in the query where condition like this: | where $tkn1$ and these 2 items are picked up, everything is ok. Question: if the user choose only All, not working: | where value (“*”) Any idea, how to handle with it, please?
... View more