Hi everybody,
Do you think it is possible to filter deferred extended text attributes ?
Such as AlarmDisplay("FILTER", "Alarmes", "", "Alarm2", "=(#@*A3 >= 22"); ?
If yes, how ? (the instruction above doesn't work).
thanks a lot.
xoxo
Hi Brice,
I don't think it is possible to filter with deferred text attributes using SCADA Basic .
Looking at the workaround with SQL filter directly in the Alarm viewer settings, it seems to work but not for TextIndAttrNN.
The reason why is that the comparison is not done on values but rather on string comparison (data type is string as documented).
Trying with fields as value work fine.
Downside is it will not be updated in real time but when the mimic is opened.
Edouard
Hi
Did you try in SQL filter something like
CAST(TextIndAttr03 AS NUMERIC)>=22
or
CONVERT(NUMERIC,TextIndAttr03)>=22


