Hi,
you can use script like this:
Best regards,
Victor
you can use script like this:
Code Select
for(d : FindAllDCIs($node, null, "Signal - * Transceiver Receive Power Sensor"))
{
value = GetDCIValue($node, d->id);
if (vmin == null or vmin > value)
vmin = value;
if (vmax == null or vmax < value)
vmax = value;
}
// Here vmin and vmax variables contains min and max values for matching DCIs
Best regards,
Victor