Write XLSX file with comments using js-xlsx

2.2k Views Asked by At

Is it possible to insert some cell comments when we write a XLSX file with js-xlsx ? When I read a file containing some cell comments, they appear when I read the file:

> var wb = XLSX.readFile("Book1comments.xlsx")                                                      
undefined                                                                                           
> wb.Sheets.Sheet1.A1.c                                                                             
[ { a: 'Stéphane Laurent',                                                                         
    t: 'Stéphane Laurent:\r\nhello',                                                                
    r: '<r><rPr><b/><sz val="9"/><color indexed="81"/><rFont val="Tahoma"/><charset val="1"/></rPr><
t>Stéphane Laurent:</t></r><r><rPr><sz val="9"/><color indexed="81"/><rFont val="Tahoma"/><charset 
val="1"/></rPr><t xml:space="preserve">\r\nhello</t></r>',                                          
    h: '<span style="font-weight: bold;">Stéphane Laurent:</span><span style=""><br/>hello</span>' 
} ]                                                                                                 

Now, when I write this JSON workbook to a XLSX file:

XLSX.writeFile(wb, "Book1comments_rewritten.xlsx")

then there are no comments anymore in the created file.

PS: I tried to remove the strange characters in Stéphane, but this still doesn't work.

1

There are 1 best solutions below

1
On

As of 0.8.1 this is not possible, because one can see that every function related to writing the comments is empty in xlsx.js:

function write_comments_xml(data, opts) { }
function write_comments_bin(data, opts) { }
/*
function write_cmnt(data, name, opts) {
    return (name.substr(-4)===".bin" ? write_comments_bin : write_comments_xml)(data, opts);
}
*/