How to include the events even with the not present field when selecting All in the dashboard?
Explanation:
| inputlookup mylookup | search a="$tkn_A$" | table b, c
How can I show these values in the filter when "All"(*) is selected in Input A?
Fields with value null do not equate to anything so
...
| search a=*
...
will find all instances where a is not null
Can you change tkn_A so that it includes the a=, something along these lines
...
<eval token="tkn_A">if(someotherfield="*","","a="+someotherfield)</eval>
...
Then change your search to
...
| search $tkn_A$
...
@VatsalJagani how about the following
| inputlookup test.csv where a="$tkn_A$" OR b="*"
| fields a b c
Fields with value null do not equate to anything so
...
| search a=*
...
will find all instances where a is not null
Can you change tkn_A so that it includes the a=, something along these lines
...
<eval token="tkn_A">if(someotherfield="*","","a="+someotherfield)</eval>
...
Then change your search to
...
| search $tkn_A$
...
Clarifying a bit more:
On change of Input A:
<eval token="tkn_A">if($a$="*"," ","a=".$a$)</eval>
Search Query Change, from: a=$a$ to $tkn_A|s$