How to multiply multiple columns by a constant?
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 error...