Data Logging on Event base


Hemendra

Recommended Posts

The easiest way is to create an export set where each expression has [0], so myChannel[0], then in the Event for the channel, use an if() statement to evaluate your condition and run the export set if its true:

if (myChannel[0] > 5)
   beginexport(myExport)
endif

Link to comment
Share on other sites

ok, I worked with Export. One difficulty is there, it is exporting data hundreds of time (some times in thousands) even logic condition turn False to True. I want it to be done single time, second export again on logic condition False to True.

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.