I need to do a simple multiplication in a CSV sheet from a batch file on a Windows 7 machine.
Assume this is my CSV sheet:
COL_A, COL_B, COL_C, COL_D
23,3,0.667,6
24,4,0,7
25,2,3.55,7
26,3,,8
I need this output:
COL_A, COL_B, COL_C, COL_D,COL_E
23,3,0.667,6,1.0
24,4,0,7,0
25,2,3.55,7,5.3
26,3,,8,0
Formula for Col_E:
COL_E = COL_C * 1.5