I want to store the value from a RTD function which is continuously changing. Suppose I set cell A1 = SomeRTDFunction(
). How should I approach this?
One possibility I have in mind is maybe to create a Sub
that runs continuously on some timer than copy the value from that cell and put it into another cell continuously.
Is there a better way to do this?