Hi,
I'm trying to use the following line within some script:
L1 = Find("Ch('[3]/Time')>(0.1-(0.9*(ChD(2,"[3]/Time")-ChD(1,"[3]/Time"))))",1)
However, it doesn't seem to like the use of the ChD function nested with the Find function, regardless of whether I use single or double quotes to frame the channel names within the ChD function. Is this not allowed within DIAdem? I can't find any reference in the help files about when to use single or double quotes.
I've used the following as a work-around:
R2 = chd(2,"[3]/Time")-chd(1,"[3]/Time")
L1 = Find("Ch('[3]/Time')>(0.1-(0.9*R2))",1)
Thanks,
Si.