CoderBeginner
CoderBeginner

Reputation: 837

How to import a excel file on button click using angular

We have a requirement of showing a excel file on click of a menu button. enter image description here

On clicking new tab, i want to show the excel file which is stored on my local drive. The excel file should look like this:

enter image description here

How can i achieve this using angular.Is there any library which can read/import excel file.? Or do i need to create table using HTML tags.? Please suggest a way to achieve this

Upvotes: 0

Views: 1803

Answers (1)

Sachila Ranawaka
Sachila Ranawaka

Reputation: 41445

you can use js-xlsx to display excel data in html. check out this demo. just go through the documentation and follow the steps.

Upvotes: 2

Related Questions