Question
How to read the .xlsx file in Illustrator using Extendscript?
Hi All,
I can able to read the CSV file. But I can't read the .xlsx file. Could anyone tell me how to read that?
var csvFile = File("~/Downloads/data.xlsx");
csvFile.encoding = 'UTF8'; // set to 'UTF8' or 'UTF-8'
csvFile.open("r");
var csvContent = csvFile.read();
csvFile.close();
Thanks.
