Is there a technique apart from using python to round off decimal values from multiple channels at one go?

I’m using a select chop which has a list of channels, and have been able to achieve the rounding off to 2 decimal points through a Script chop. However, selecting each channel feels quite repetitive and in case I want to pass a different set of channels through the select, I’ll have to make changes to the code every time. I was wondering if there are operators which work with a select chop?

Or would sticking with script be a better and more optimised solution?

You could use a Limit Chop after your Select Chop. With the Limit Chop you can quantize (round) the value to a stepsize of 0.01. (second tab in the parameters)
roy

Thank you! This works.
I also notice that there are occasional values that aren’t being rounded off as expected.