How can I export an excel files with multiple sheets with special characters in sheet name? For example, I tried this but the file cannot be opened:
window.saveFile = function saveFile () {
var data1 = [{a:1,b:10},{a:2,b:20}];
var data2 = [{a:100,b:10},{a:200,b:20}];
var opts = [{sheetid:'Good1&2',header:true},{sheetid:'Two',header:false}];
var res = alasql('SELECT INTO XLSX("MyAwesomeData.xlsx",?) FROM ?',[opts,[data1,data2]]);
}