ImportJSON icon indicating copy to clipboard operation
ImportJSON copied to clipboard

My offer to update the code ParseData_()

Open notes4work opened this issue 3 years ago • 0 comments

    // Insert the data
    //*********************my code
    if (value == null) {
    data[state.rowIndex][headers[path]] = "null";
    return true;
    } else {
    //*******
    data[state.rowIndex][headers[path]] = value;
    dataInserted = true;
    }

notes4work avatar Mar 24 '21 09:03 notes4work