Thankyou. As it turns out the view I was using was incorrect and
the view I am now using already has both an SLA expiry field (binary) and a Time To Violation field in the format needed :)
Possibly superfluous, but using those 2 fields, I was able to apply some intelligence to my listing of jobs (I couldn't use the previously suggested code properly and need to meet deadlines):
if {VIEW.sla_violation}=0 and
dateadd("h",24,CurrentDateTime) >
{@Convert Date} then
"Due to expire within 24" else
if {VIEW.sla_violation}=1 then
"SLA Violated"
else
"Not due to expire within 24 hours"
Now to set up the summary :)
Edited by AndreasI - 24 Aug 2009 at 9:09pm