Skip to main content
Announcements
Defect acknowledgement with Nprinting Engine May 2022 SR2, please READ HERE
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Is anyone know how to display a web Url link field in N-printing report ?

Hi ,

   i have a qlik view report which contains a field link to a web  URL. when users clicks on a product Id it will open in a web page with product details . but when i use n-printing to generate  a report, field is coming with plain column name . column is not clickable and doesn't have the link.

my n-printing report is HTML report . i have tried with image and a table options . both did not work.

any suggestions..?

thank you in advance...

3 Replies
Daniel_Jenkins
Specialist III
Specialist III

Hi Sam,

Take a look at this discussion: Re: NPrinting Hyperlink - HTML

HTH - Daniel.

Not applicable
Author

Thanks Daniel.

but did not work for me .

here is my syntax for the link :

<tr>

  <td>Application Name</td>  

</tr>

<tr>

  <td><a href="http://App.web.com/Directory/ViewApplication.do?applicationid=&%%AppID%%">%%AppName%%<Link> </a></td>

</tr>



Daniel_Jenkins
Specialist III
Specialist III

Hi Sam,

If you have a table in your QlikView document with a field containing the URLs like this:

And you want a QlikView NPrinting HTML report like this:

You would code your HTML template something like this:

<html>
<body>
<table border="1" bordercolor="#FFCC00" style="background-color:#FFFFCC" width="100%" cellpadding="3" cellspacing="3" width="300px">

<tr>
  <td style="width:100px">Slno</td>
  <td style="width:100px">Company</td>
  <td style="width:100px">Link</td>   
</tr>
<tr>
  <td style="width:100px">%%Slno%%</td>
  <td style="width:100px">%%Company%%</td>
  <td style="width:100px"><a href="%%Url%%" target="_blank">Website for %%Company%%</a></td>
</tr>
</table>

</body>
</html>

Don't forget to un-check HTML Encode for the URL field.

I have attached the project I used in case you want to experiment. Extract to folder C:\Temp\Community\053 or change the paths in the NSQ.

HTH - Daniel.