Hi @FrankVl Let me share with you the full query with the links this is it with attempting to use the <fields> tag The Drill-down part works however when I try to add fields into the multi-select the table doesn't add those fields in <row>
<panel depends="$ShowANI$">
<input type="multiselect" token="fieldsANI" searchWhenChanged="true" id="resized_input1">
<label>Add other Fields</label>
<choice value="Codec">Codec</choice>
<choice value="Codec_List">Codec_List</choice>
<choice value="Dis_Init">Dis_Init</choice>
<choice value="Sip_Resp">Sip_Resp</choice>
<choice value="rnum">rnum</choice>
<choice value="Minutes">Minutes</choice>
<delimiter> </delimiter>
</input>
<table>
<title>ANI Analysis (ANI Specified in Filter - use OR for multiple ANI's)</title>
<search>
<query>index=cdr_sbc2 ANI=$ANI$ Call_Ty=3 Called_Country=* | fillnull | eval Caller_Location=if(isnull(Caller_Location),"UnKnown",Caller_Location) | eval Market_Maker=if(isnull(Market_Maker),"Can't Find",Market_Maker) |stats count(_raw) AS Attempts, count(eval(Sip_Resp="200")) as Completed, count(eval(Dur="0")) as Zero_Duration, sum(Dur) AS Seconds by OTG,OTG_acctName,DTG,DTG_acctName,ANI,Caller_Location,Routing_Location,Market_Maker,direct_cic,rdest,Called_Country_ID,$fieldsANI$
| eval ASR=round(Completed/Attempts*100,2)
| eval Minutes=round(Seconds/60,1)
| eval ALOC=round(Minutes/Completed,2)
| eval DTG_acctName=DTG_acctName+" ("+direct_cic+")"
| eval Routing_Location=Routing_Location+" ("+rdest+")"
| table OTG,OTG_acctName,DTG,DTG_acctName,ANI,Attempts,Completed,Caller_Location,Routing_Location,rdest,Called_Country_ID,ALOC,ASR,$fieldsANI$,Market_Maker
| fields - Seconds
| sort -Attempts</query>
<earliest>$Time_Range.earliest$</earliest>
<latest>$Time_Range.latest$</latest>
</search>
<option name="count">10</option>
<option name="drilldown">cell</option>
<option name="refresh.display">progressbar</option>
<option name="wrap">false</option>
<fields>["OTG","OTG_acctName","DTG","DTG_acctName","ANI","Attempts","Completed","Caller_Location","Routing_Location","ALOC","ASR","$fieldsANI$","Market_Maker"]</fields>
<drilldown>
<link target="_blank">https://art.comp.net/#/routes?country=$row.Called_Country_ID$&location=$row.rdest$</link>
</drilldown>
</table>
</panel>
</row>
... View more