DEV Community

SUNARDI
SUNARDI

Posted on

How to use parse paste-from-excel to copy blank values into numeric values in React JS

It requires special logic to convert the blank values from the copied Excel data into 0 values There is a parse function from the npm (paste-from-excel) package that I use.

import React, { useState } from "react";
import parse from "paste-from-excel";
const PasteFromExcel = () => {
    const dataPoint =

Top comments (0)