Hi @gcusello Currently the choices in Data Entity stays as static values ex (Airbag scheduling,Material ,Cost Summary) Based on that values that I select from the Data Entity , I wanted to do comparison of that value in my eval cmd to set the correct token to use in later queries so that i know that token is belonging to specific option of Data Entity. So how do i transform these Data Entity options based on the value selected in the first dropdown domain. ex., if i select MM in the 1st dropdown , i should get options pertained to MM. if i select Goods in the 1st dropdown , i should get options pertained to Goods. It can be one options or multiple on the data entity </input> <input type="dropdown" token="domainToken"> <label>Data Entity</label> <choice value=“0-a,1-b,2-b,3-,4-,5-,6-a”>Airbag Scheduling</choice> <choice value=“0-d,1-e,2-e,3-,4-d,5-d,6-d”>Material</choice> <choice value=“0-e,1-f,2-f,3-e,4-,5-,6-”>Cost Summary</choice> <choice value=“0-f,1-e,2-b,3-b,4-md,5-a">All</choice> <change> <eval token="domainToken1">mvindex(split($value$,","),2)</eval> <eval token="objectToken2">mvindex(split($value$,","),1)</eval> <eval token="objectToken1">mvindex(split($value$,","),0)</eval> <eval token="outputToken1">mvindex(split($value$,","),3)</eval> <eval token="outputToken2">mvindex(split($value$,","),4)</eval> <eval token="outputToken3">mvindex(split($value$,","),5)</eval> </change> </input> search query1: <query>index=$indexToken$ source IN (“A-B-$objectToken1$", “/A-B-$stage-$objectToken2$”,”/A-B-$domainToken1$")</query> search query2: <query>index=$indexToken$ source IN (“C-$outputToken1$”-D-”, “E-$outputToken2$-F”,”G-$outputToken3$-H”)</query> search query3: <query>index=$indexToken$ source IN (“C-$outputToken1$”-D-”, “E-$outputToken2$-F”,”G-$outputToken3$-H”)</query>
... View more