Sometimes one may wish Chemstation to employ more decimal places in the CSV file it generates. In this example, we discuss how to change it from two to three decimal places.
First:
- Alter epa.mac so the quant report displayed the proper number of digits.See KDB 35518.
- Locate the file csv.mac under the C:\msdchem\msmacros folder. Make sure you use THIS csv.mac file because there is a different file name csv.mac in the gcmacros folder, too.
- Make a safe copy of the correct csv.mac file. (Perhaps copy it to csv_backup.mac).
- Edit the correct csv.mac file:
- Find this line:
format$=”””%”,#”+csvrtdigits$+”,#.##/” - Change it to:
format$=”””%”,#”+csvrtdigits$+”,#.###/”
- Find this line:
This will add the third decimal place in the csv file.
41686