Excel Tools

Overview

Provides the following custom smart services and functions for handling data in Excel.

Key Features & Functionality

Smart Services included are:

  • Merge Excel Documents
  • Import CSV to Database
  • Import Excel to Database
  • Load CSV to Database
  • Convert HTML to CSV  
  • Convert Excel to CSV
  • Encrypt Excel with Password

Functions included are:

  • Read Excel File Paged
  • Read Excel Cell by Name
  • Read Excel Cell by Number
  • Query Appian Logs
  • Export Datasubset to Base64
  • Validate Document Headers
Anonymous
Parents
  • Hello! 

    We are having different issues with the converts one html document to a csv document. We are reviewing the plugging that makes this operation and we fund a mistake in the plugging's source code at ConvertHtmlToCSV.run(). At the insertion of the variable which i responsable for initiating the csv doesn't  contain the argument charset, so the special characters of the Spanish alphabet which are  included in the html doc, it appears in csv doc like strange characters. We think that the solution to this issue will be changing this sentence: 

    fop = new FileOutputStream(csvFile);
    to this sentence:
    fop = new PrintWriter(new OutputStreamWriter(new FileOutputStream(new File(csvFile), true), StandardCharsets.UTF_8));
    Could you include this change in the plugging??
    Thank you very much in advance.
    Best regards.
Comment
  • Hello! 

    We are having different issues with the converts one html document to a csv document. We are reviewing the plugging that makes this operation and we fund a mistake in the plugging's source code at ConvertHtmlToCSV.run(). At the insertion of the variable which i responsable for initiating the csv doesn't  contain the argument charset, so the special characters of the Spanish alphabet which are  included in the html doc, it appears in csv doc like strange characters. We think that the solution to this issue will be changing this sentence: 

    fop = new FileOutputStream(csvFile);
    to this sentence:
    fop = new PrintWriter(new OutputStreamWriter(new FileOutputStream(new File(csvFile), true), StandardCharsets.UTF_8));
    Could you include this change in the plugging??
    Thank you very much in advance.
    Best regards.
Children
No Data