11-21-2014 05:48 AM
Hi
I am using a Multiple. Numeric Measurement.
with
Measurement A
Measurement B
Measurement C
I want to be selective in which measurements I want to do. based on a Variable(bool or numeric)
i.e based on my Select switch sometimes I wont be doing Measurement B and sometimes I would
how can I achieve the same
11-21-2014 11:51 AM
The easiest solution is to create 2 steps calling the same module. One with A and C and the other with all 3.
Then just precondition them so that one runs in one instance and the other runs in the other case.
Outside of that you can dynamically change the measurements through the API either in a preceding step or in the code module.
You could also create a custom step where you can turn off and on one of the measurements. I don't recommend this. It seems a bit overkill.
Hope this helps,
11-24-2014 03:18 AM
thanks for the multiple options Jigg.