'How to get Text Box controller data on excel file using XLSX angular

How to get text Box controller data in excel sheet using XLSX in angular

    const binarystr: string = e.target.result;
    const wb: XLSX.WorkBook = XLSX.read(binarystr, { type: 'binary' });
    const wsname: string = wb.SheetNames[1];
    const ws: XLSX.WorkSheet = wb.Sheets[wsname];

    const test = XLSX.utils.sheet_to_json(rer, { header: 1 });

I have tried this code. what changes i should want to make here?Please help



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source