Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

How to read date from an excel file in JavaScript ?

When I fetched a date field from excel file, it comes like some integer/floating point number, how to display the original date present in the excel file.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
315 views
Welcome To Ask or Share your Answers For Others

1 Answer

In JavaScript, when we fetch a date field from an excel file, it shows some integer/floating point number. To convert the number back to date, we can use the following:

  1. install excel-date-to-js package (npm i excel-date-to-js)
  2. Run this snippet:
   const { getJsDateFromExcel } = require("excel-date-to-js") 
   getJsDateFromExcel(dateFieldFromExcelFile)   e.g. getJsDateFromExcel(data[1][0])

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...