This is data table example
Model BuildType Version
A type1 1
A type2 2
A type1 3
B type1 4
B type2 5
B type1 6
I have 2 panel.
Left is panel with version i select from chart.
Right panel is version choise ($version$) with default is next $version$
index=abcd MODEL IN ($model$) BUILDTYPE=$buildtype$ source="source1"
| search VERSION> $version$
| stats count by VERSION
In the above code. When i click on version 3 in chart. I have left panel is version 3. And right will be 4 (Dropdown list with value is 4, 5, 6 . But 4 will be selected)
However, when i choise the lastest version. Example i click on version 6 on chart ($version$ = 6 )
The left panel now will select version = 6. Right panel is no result found ( Null ) now.
The output i expect as bellow
Left Panel Right Panel
Version Version
6 5
This is dropdown list so we also can choice Version in Right to 4,3,2,1
... View more