-3

I am able to fetch data from excel sheet but i am not able to print/publish/post data data in pdf or word i am basicaly try to fetch any excel data any specific no of rows or columns and want to post it in pdf

enter image description here

MorganFreeFarm
  • 3,811
  • 8
  • 23
  • 46
Vik
  • 1
  • 1
    It's not clear what you're asking. Do you want to read a range and export said range to a PDF? Does each row have to go into a single PDF? What have you tried so far? – Wolfgang Radl Sep 19 '18 at 16:29
  • i simply want that whenever i call any field row or columun i will get info related to that in a pdf format all that was provided in excel sheet i.e simply conversion of details related to particular type in a pdf file – Vik Sep 21 '18 at 15:12

1 Answers1

0

Generally speaking, UiPath can create PDF files when:

  1. You are working with Word documents, in a Word Application Scope using the Export to PDF activity.
  2. Via generic desktop automation. For example, if you have Microsoft Excel installed, you can open your file and then use Save to PDF via the menu.
  3. Via a custom activity. While above methods have their restrictions, i.e. requiring you to work with either Word or Excel files, a custom activity can create a PDF from any other input, form, or format. My favorite library is iText, but you use just any other one to your liking to render the PDF.
Wolfgang Radl
  • 2,319
  • 2
  • 17
  • 22