Here is my current XML code: Panel 1, I am setting the query's result to token called "total_tok": <panel> <title>Score</title> <single> <search base="base"> <query>where ((EDR=1 OR EDR="Exception Approved" OR EDR="Exception Submitted") AND (NGAV=1 OR NGAV="Exception Approved" OR NGAV="Exception Submitted")) |stats count as Compliant | appendcols [|loadjob savedsearch="andrew_nelson:renbe:Asset Registry - Security Agent SRO" events=false |eval edr_compliant=if(EDR=1, "Yes", "No"), ngav_compliant=if(NGAV=1, "Yes", "No") , mcafee_active45d = if(mcafee_active45d=1,"Active","Not Active") | fields - dell_discovery_mac dell_discovery_ip | search dell_discovery_host="*" EDR="*" NGAV="*" DeviceOwnerL5Name="*" DeviceOwnerL4Name="*" | search |stats count as Total | eval Total = Total] | eval percent=round((Compliant/Total)*100,2)."%" | table percent</query> <done> <set token="total_tok">$result.percent$</set> </done> </search> <option name="drilldown">none</option> <option name="refresh.display">progressbar</option> </single> </panel> Next, on Panel 2, I am simply calling this same token and multiplying i (the calculation is a lot longer in my actual application btw 🙂 ) <panel> <title>EDR Compliant - Percentage</title> <single> <search> <query>$total_tok$*2</query> </search> <option name="drilldown">none</option> <option name="refresh.display">progressbar</option> </single> </panel> Am I calling the token from Panel 1 incorrectly as Panel 2 just says the following: Many thanks, Patrick
... View more