@karthi2809 Are you looking for this? <form version="1.1" theme="dark">
<label>Application</label>
<fieldset submitButton="false">
<input type="dropdown" token="BankApp" searchWhenChang...
See more...
@karthi2809 Are you looking for this? <form version="1.1" theme="dark">
<label>Application</label>
<fieldset submitButton="false">
<input type="dropdown" token="BankApp" searchWhenChanged="true">
<label>ApplicationName</label>
<choice value="*">All</choice>
<search>
<query>
| makeresults | eval applicationName="Test1,Test2,Test3" | eval applicationName=split(applicationName,",") | stats count by applicationName | table applicationName
</query>
</search>
<fieldForLabel>applicationName</fieldForLabel>
<fieldForValue>applicationName</fieldForValue>
<default>*</default>
<prefix>applicationName="</prefix>
<suffix>"</suffix>
<change>
<condition match="$value$=="*"">
<set token="new_value">applicationName IN ("Test1" , "TEST2" , "Test3")</set>
</condition>
<condition>
<set token="new_value">$BankApp$</set>
</condition>
</change>
</input>
<input type="dropdown" token="interface" searchWhenChanged="true">
<label>InterfaceName</label>
<choice value="*">All</choice>
<search>
<query>
| inputlookup BankIntegration.csv
| search $new_value$
| eval InterfaceName=split(InterfaceName,",") | stats count by InterfaceName | table InterfaceName
</query>
</search>
<fieldForLabel>InterfaceName</fieldForLabel>
<fieldForValue>InterfaceName</fieldForValue>
<default>*</default>
<prefix>InterfaceName="</prefix>
<suffix>"</suffix>
<change>
<condition match="$value$=="*"">
<set token="new_interface">InterfaceName IN (
"USBANK_KYRIBA_ORACLE_CE_BANKSTMTS_INOUT",
"USBANK_AP_POSITIVE_PAY",
"HSBC_NA_AP_ACH",
"USBANK_AP_ACH",
"HSBC_EU_KYRIBA_CE_BANKSTMTS_TWIST_INOUT")</set>
</condition>
<condition>
<set token="new_interface">$interface$</set>
</condition>
</change>
</input>
</fieldset>
<row>
<panel>
<html>
Dropdown Value = $BankApp$
<br/>
new_value= $new_value$
<br/>
new_interface = $new_interface$
<br/>
| inputlookup BankIntegration.csv
| search $new_value$
| eval InterfaceName=split(InterfaceName,",") | stats count by InterfaceName | table InterfaceName
</html>
</panel>
</row>
</form>