Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Join us in Bucharest on Sept 18th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

How to generate PDF report using Binary data.

Hi All,

I have binary formatted (010101010110) data in our database, how to possible to convert the binary to actual data and generate the  PDF report in qlik sense.

2 Replies
undergrinder
Specialist II
Specialist II

Hi,

To create a PDF report you can use the export sheet to pdf option.

export.png

For scheduled report you can use (and license) NPrinting

https://help.qlik.com/en-US/nprinting/June2018/Content/Introduction/Introduction.htm

-----

I can't comment to binary data, it depends on many factor.

binary data because of the field contains pictures?

G.

balabhaskarqlik

Convert your Binary data may be like this:

Table:

LOAD *;

SQL

SQL

SELECT

     HEX(Id) as Id,

     Name,

FROM table01;

Export data into PDF by these ways:

To export a sheet to PDF:

pdf1.PNG

To export a particular chart:

pdf2.PNG

To export multiple charts in a way you want, create a story and you can export the story into PDF document.

pdf3.PNG