CotalkerPartners / mongo-xlsx

Convert Mongo data into Excel and vice versa @ Node.js. MongoDB Mongoose Dump to excel.
MIT License
99 stars 28 forks source link

Roadmap #5

Open acedward opened 8 years ago

acedward commented 8 years ago
var ms = ((numericExcelDate - (25567 - 1)) * 86400 * 1000);
var ms_offset = (new Date().getTimezoneOffset() * 60000);
var dt = new Date(ms + ms_offset);
anArray[0] anArray[1] anArray[2] aString[0]
1 a 3 hey

it could be, optionally, converted to:

anArray[0] aString[0]
1, a, 3 hey

Allowing external systems/scripts to easily access information based on column position

acedward commented 8 years ago
acedward commented 7 years ago
acedward commented 7 years ago

[ ] Update to EC6 sintax, (node v6)

BMLande commented 7 years ago

no A B C(header)

  1. a b
  2. a b c
  3. a

in above example i need the result as row 1 and 3 are incomplete. can you please add one method to this package which will return the excel rows which are not having data. thanks regards Bhagvat Lande