I am working with a data table near ~250 columns. For about half of the columns, I need to multiply the column by 1000 (for mA).
I would like to do this without having to create a new column every time (reassigning the column).
Throwing this code into my script, I have
DataTable("Temp")<< (:Col_To_Multiply *= 1000);
This equation is not changing my column at all, and its also not throwing any errors.
This is only for one column, and keep in mind I need to do this for ~125 columns.
Any ideas on the equation or how to do this dynamically would be great.
Thanks in advance!
-Matt