SMR
7 years agoNew Contributor
How to write data to csv file using Java script?
Hello All,
I need help in writing values to csv file.My code is as below:
Driver = DDT.CSVDriver("C:/test.csv");
while(!Driver.EOF())
{
rowValue = Driver.Value("1stcolumn");
columnValue = Driver.Value("2ndcolumn");
// here I want to write some data to 3rd column based on the row., can anyone suggest me how to open csv file and //write in java script?
Driver.Next();
}
Thank you.