Hi Rodrigo,
You can use the CCH function:
CCh(ChannelName,StatValueIndex)ChannelName Specifies the name of a data channel.
StatValueIndex Specifies the index of the characteristic value to be calculated. Index Characteristic value are:
0 Mean
1 Minimum
2 Maximum
3 Range
4 Sum
VBS syntax:
dblMyResult =
CCh("ChannelName",2)
REPORT/GRAPH:
Call GraphObjOpen("Text1")
TXTTXT = @CCh("ChannelName",2)@
Call GraphObjClose("Text1")
Or set the text content to: @CCh("ChannelName",2)@
Greetings
Walter