Hi ITWhisperer, Its again not working for me. Not displaying anything on the dashboard. Below is my code. Please guide me where I go wrong. Thanks in advance. <form theme="dark"> <label> Build Report </label> <fieldset submitButton="false" autoRun="true"> <input type="multiselect" token="Org"> <label> Org Name</label> <choice value="*">All Org</choice> <choice value="accert">accert</choice> <choice value="atj">atj</choice> <choice value="force">force</choice> <choice value="merchant">merchant</choice> <choice value="control">control</choice> <choice value="gcpi">gcpi</choice> <choice value="ppp">ppp</choice> <choice value="theforce">theforce</choice> <choice value="gpof">gpof</choice> <choice value="hkin">hkin</choice> <choice value="ihh">ihh</choice> ....... ........ ....... <initialValue>*</initialValue> <default>*</default> <eval token="form.Org">case(mvcount('form.Org')=0,"*",mvcount('form.Org')>1 AND mvfind('form.Org',"*")>0,"*",mvcount('form.Org')>1 AND mvfi('form.Org',"*")=0,mvfilter('form.Org'!="*"),1==1,'form.Org')</eval> <eval token="accert">if(isnull(mvfind('form.Org',"accert")),mvfind('form.Org',"*"),1)</eval> <eval token="atj">if(isnull(mvfind('form.Org',"atj")),mvfind('form.Org',"*"),1)</eval> <eval token="force">if(isnull(mvfind('form.Org',"force")),mvfind('form.Org',"*"),1)</eval> <eval token="merchant">if(isnull(mvfind('form.Org',"merchant")),mvfind('form.Org',"*"),1)</eval> <eval token="control">if(isnull(mvfind('form.Org',"control")),mvfind('form.Org',"*"),1)</eval> <eval token="gcpi">if(isnull(mvfind('form.Org',gcpi")),mvfind('form.Org',"*"),1)</eval> <eval token="ppp">if(isnull(mvfind('form.Org',"ppp")),mvfind('form.Org',"*"),1)</eval> <eval token="theforce">if(isnull(mvfind('form.Org',"theforce")),mvfind('form.Org',"*"),1)</eval> <eval token="gpof">if(isnull(mvfind('form.Org',"gpof")),mvfind('form.Org',"*"),1)</eval> ....... ....... ....... ........ </fieldset> <row> <panel depends="$merchant$"> <title> Report for Merchant</title> <chart> <search> <query>index=abc sourcetype="xyz" OrgFolderName=merchant BuildResult=SUCCESS $Org$ </query> <earliest>$field4.earliest$</earliest> <latest>$field4.latest$</latest> </search> <option name="charting.axisLabelsX.majorLabelStyle.overflowMode">ellipsisNone</option> <option name="charting.axisLabelsX.majorLabelStyle.rotation">0</option> <option name="charting.axisTitleX.text">Date</option> <option name="charting.axisTitleX.visibility">visible</option> <option name="charting.axisTitleY.text">BuildDuration in minutes</option> <option name="charting.axisTitleY.visibility">visible</option> <option name="charting.axisTitleY2.visibility">visible</option> <option name="charting.axisX.scale">linear</option> <option name="charting.axisY.scale">linear</option> <option name="charting.axisY2.enabled">0</option> <option name="charting.axisY2.scale">inherit</option> </chart> </panel> </row> <panel depends="$accert$"> <title> Report for accert</title> <chart> <search> <query>index=abc sourcetype="xyz" OrgFolderName=accert BuildResult=SUCCESS $Org$ </query> <earliest>$field4.earliest$</earliest> <latest>$field4.latest$</latest> </search> <option name="charting.axisLabelsX.majorLabelStyle.overflowMode">ellipsisNone</option> <option name="charting.axisLabelsX.majorLabelStyle.rotation">0</option> <option name="charting.axisTitleX.text">Date</option> <option name="charting.axisTitleX.visibility">visible</option> <option name="charting.axisTitleY.text">BuildDuration in minutes</option> <option name="charting.axisTitleY.visibility">visible</option> <option name="charting.axisTitleY2.visibility">visible</option> <option name="charting.axisX.scale">linear</option> <option name="charting.axisY.scale">linear</option> <option name="charting.axisY2.enabled">0</option> <option name="charting.axisY2.scale">inherit</option> </chart> </panel> </row> ........ ......... ......... </form>
... View more