I am pasting an array into a non empty .csv file using the following code
[C2].Resize(UBound(reformat_mat), UBound(Application.Transpose(reformat_mat))) = reformat_mat
We are losing some decimal places in the process (#'s in array have more decimals than #'s pasted into the .csv file).
How can I preserve all decimal places?
[C2].Resize(UBound(reformat_mat), UBound(Application.Transpose(reformat_mat))) = reformat_mat
We are losing some decimal places in the process (#'s in array have more decimals than #'s pasted into the .csv file).
How can I preserve all decimal places?