Hi All
I am using VBA to export certain columns from excel to a csv file. The below extract is what I have done to choose the columns:
Column 12 contains a value eg 1,234.45 in the actual sheet - am I able to convert/round it to 1234 directly in the script to prevent the user from having to change it in excel?
Thanks in advance
I am using VBA to export certain columns from excel to a csv file. The below extract is what I have done to choose the columns:
Code:
Print #1, Sheets("Output").Cells(i, 6).Text & separator & Sheets("Output").Cells(i, 12).Text & separator
Column 12 contains a value eg 1,234.45 in the actual sheet - am I able to convert/round it to 1234 directly in the script to prevent the user from having to change it in excel?
Thanks in advance