Thanks for all the help troubleshooting. Not sure who to credit answer too... but when I eliminated extra event handler and put everything in finalized it works.
Finalized vs above...
<finalized>
<condition match="'job.resultCount' == 1">
<set token="KER">$result.KER$</set>
<set token="singleresult">true</set>
<set token="runDuration">$job.runDuration$</set>
<eval token="KER_COLUMN">coalesce($view$,"KER")</eval>
</condition>
<condition match="'job.resultCount' != 1">
<set token="runDuration">$job.runDuration$</set>
<unset token="singleresult"></unset>
<unset token="KER"></unset>
<eval token="KER_COLUMN">coalesce($view$,"KER")</eval>
</condition>
</finalized>
I thought I had tried this.
Also eliminated some unnecessary table drilldown options in an event handler elsewhere... good news is working now.
... View more