PDA

View Full Version : triggers and wildcards


gatisa
13-10-2005, 09:30
is it possible to do something like:

{localhost:customkey(*).last(0)} > 90

instead of:

{localhost:customkey(A).last(0)} > 90
{localhost:customkey(B).last(0)} > 90
{localhost:customkey(C).last(0)} > 90

James Wells
13-10-2005, 16:21
Greetings,

is it possible to do something like:

{localhost:customkey(*).last(0)} > 90

instead of:

{localhost:customkey(A).last(0)} > 90
{localhost:customkey(B).last(0)} > 90
{localhost:customkey(C).last(0)} > 90
At present, no, however, you can do something like this;
({localhost:customkey(A).last(0)}>90)&({localhost:customkey(B).last(0)}>90)&({localhost:customkey(C).last(0)} >90)

gatisa
14-10-2005, 08:42
nope it is not the solution
image if you got an example 50 custom items - you need to add(or at least type in a one string) em each seperately anyway.