<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Print a Text Object in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Print-a-Text-Object/m-p/1656597#M448352</link>
    <description>&lt;P&gt;Yes PDF&amp;nbsp; Report&lt;/P&gt;</description>
    <pubDate>Wed, 11 Dec 2019 15:10:50 GMT</pubDate>
    <dc:creator>upaliwije</dc:creator>
    <dc:date>2019-12-11T15:10:50Z</dc:date>
    <item>
      <title>Print a Text Object</title>
      <link>https://community.qlik.com/t5/QlikView/Print-a-Text-Object/m-p/1656138#M448287</link>
      <description>&lt;P&gt;Hi Friends&lt;/P&gt;&lt;P&gt;In my QV document I have loaded data relating to vehicle parts and it is displayed in a table box as&amp;nbsp; shown below.&amp;nbsp;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot_4.png" style="width: 267px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/25291iD442D13A5FC9A79F/image-size/large?v=v2&amp;amp;px=999" role="button" title="Screenshot_4.png" alt="Screenshot_4.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;I want the records in Table box to be printed as labels&amp;nbsp; (to be affixed on the part)&amp;nbsp; as shown above. I think this has to be arranged a text box and then print. However I am not aware&amp;nbsp; of how to do it. I seek your help to fulfill my requirement please.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 10 Dec 2019 16:06:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Print-a-Text-Object/m-p/1656138#M448287</guid>
      <dc:creator>upaliwije</dc:creator>
      <dc:date>2019-12-10T16:06:52Z</dc:date>
    </item>
    <item>
      <title>Re: Print a Text Object</title>
      <link>https://community.qlik.com/t5/QlikView/Print-a-Text-Object/m-p/1656332#M448324</link>
      <description>Dear Friends, Pls help me with some solution</description>
      <pubDate>Wed, 11 Dec 2019 02:57:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Print-a-Text-Object/m-p/1656332#M448324</guid>
      <dc:creator>upaliwije</dc:creator>
      <dc:date>2019-12-11T02:57:53Z</dc:date>
    </item>
    <item>
      <title>Re: Print a Text Object</title>
      <link>https://community.qlik.com/t5/QlikView/Print-a-Text-Object/m-p/1656347#M448325</link>
      <description>&lt;P&gt;In load script, add in a rowno() for ranking purpose, example:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Raw:
load * inline [
Field1,Field2,Field3
1,A,A1
2,A,A1
3,A,A2
4,B,B1
5,B,B1
6,C,C1
];
Data:
load *, if(RowNo()=1,1,if(peek(Field2)=Field2 and peek(Field3)=Field3,0,2)) as Rank2
Resident Raw;
drop table Raw;
NoConcatenate
TempData:
load * ,if(RowNo()=1,1,peek(Rank)+1) as Rank
Resident Data
where Rank2 &amp;lt;&amp;gt;0;
drop table Data;

EXIT Script;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Then at front end, insert a textbox and try this:&lt;/P&gt;&lt;DIV class="mceNonEditable lia-copypaste-placeholder"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;P&gt;='Field1: '&amp;amp;only({&amp;lt;Rank={1}&amp;gt;}Field1)&amp;amp; chr(10)&amp;amp;'Field2: '&amp;amp;only({&amp;lt;Rank={1}&amp;gt;}Field2)&amp;amp; chr(10)&amp;amp;'Field3: '&amp;amp;only({&amp;lt;Rank={1}&amp;gt;}Field3)&amp;amp;chr(10)&lt;/P&gt;&lt;P&gt;You should get:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="MC.PNG" style="width: 153px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/25322iF47628C712E4E7A1/image-size/large?v=v2&amp;amp;px=999" role="button" title="MC.PNG" alt="MC.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Insert a new textbox Replace Rank =1 to Rank =2 to get the second textbox:&lt;/P&gt;&lt;P&gt;='Field1: '&amp;amp;only({&amp;lt;Rank={2}&amp;gt;}Field1)&amp;amp; chr(10)&amp;amp;'Field2: '&amp;amp;only({&amp;lt;Rank={2}&amp;gt;}Field2)&amp;amp; chr(10)&amp;amp;'Field3: '&amp;amp;only({&amp;lt;Rank={2}&amp;gt;}Field3)&amp;amp;chr(10)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Continue with Rank =3 and Rank =4 and you will get:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="MC2.PNG" style="width: 98px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/25324i4A47D677A03EF2D5/image-size/large?v=v2&amp;amp;px=999" role="button" title="MC2.PNG" alt="MC2.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 11 Dec 2019 05:42:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Print-a-Text-Object/m-p/1656347#M448325</guid>
      <dc:creator>Arthur_Fong</dc:creator>
      <dc:date>2019-12-11T05:42:19Z</dc:date>
    </item>
    <item>
      <title>Re: Print a Text Object</title>
      <link>https://community.qlik.com/t5/QlikView/Print-a-Text-Object/m-p/1656551#M448345</link>
      <description>&lt;P&gt;Thanks&amp;nbsp; Arthur,&lt;/P&gt;&lt;P&gt;It works fine. But my concern is when there are thousands of records have I got to create text objects for each rank. That is not&amp;nbsp; practical. I am&amp;nbsp; looking for some thing where once done all labels should appear one after the other to print. Kindly help me with that .&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 11 Dec 2019 14:15:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Print-a-Text-Object/m-p/1656551#M448345</guid>
      <dc:creator>upaliwije</dc:creator>
      <dc:date>2019-12-11T14:15:18Z</dc:date>
    </item>
    <item>
      <title>Re: Print a Text Object</title>
      <link>https://community.qlik.com/t5/QlikView/Print-a-Text-Object/m-p/1656570#M448349</link>
      <description>&lt;P&gt;How could you fit 1000 of text object in a dashboard?&lt;/P&gt;&lt;P&gt;Or are you looking for ways to generate PDF report?&lt;/P&gt;</description>
      <pubDate>Wed, 11 Dec 2019 14:42:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Print-a-Text-Object/m-p/1656570#M448349</guid>
      <dc:creator>Arthur_Fong</dc:creator>
      <dc:date>2019-12-11T14:42:04Z</dc:date>
    </item>
    <item>
      <title>Re: Print a Text Object</title>
      <link>https://community.qlik.com/t5/QlikView/Print-a-Text-Object/m-p/1656597#M448352</link>
      <description>&lt;P&gt;Yes PDF&amp;nbsp; Report&lt;/P&gt;</description>
      <pubDate>Wed, 11 Dec 2019 15:10:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Print-a-Text-Object/m-p/1656597#M448352</guid>
      <dc:creator>upaliwije</dc:creator>
      <dc:date>2019-12-11T15:10:50Z</dc:date>
    </item>
    <item>
      <title>Re: Print a Text Object</title>
      <link>https://community.qlik.com/t5/QlikView/Print-a-Text-Object/m-p/1659021#M448573</link>
      <description>&lt;P&gt;Have a look at the following Design Blog post as well, might be another way to go in this use case:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://community.qlik.com/t5/Qlik-Design-Blog/Unbalanced-n-level-hierarchies/ba-p/1474325" target="_blank"&gt;https://community.qlik.com/t5/Qlik-Design-Blog/Unbalanced-n-level-hierarchies/ba-p/1474325&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Regards,&lt;BR /&gt;Brett&lt;/P&gt;</description>
      <pubDate>Wed, 18 Dec 2019 14:06:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Print-a-Text-Object/m-p/1659021#M448573</guid>
      <dc:creator>Brett_Bleess</dc:creator>
      <dc:date>2019-12-18T14:06:54Z</dc:date>
    </item>
    <item>
      <title>Re: Print a Text Object</title>
      <link>https://community.qlik.com/t5/QlikView/Print-a-Text-Object/m-p/1659045#M448576</link>
      <description>&lt;P&gt;1. Make a Straight Table chart with a calculated dimension like:&lt;/P&gt;&lt;P&gt;=PART_NO&lt;BR /&gt;&amp;amp; chr(10) &amp;amp; MAKE&lt;BR /&gt;&amp;amp; chr(10) &amp;amp; MODEL&lt;/P&gt;&lt;P&gt;2. On the Presentation tab, set the Cell Height to the number of lines per label.&amp;nbsp;&lt;/P&gt;&lt;P&gt;3. Use the Style tab to remove all the separator lines.&amp;nbsp;&lt;/P&gt;&lt;P&gt;4. Add the chart to a QV Report and print it.&amp;nbsp; See the "Invoice" sheet in this example for an example of formatting and printing a report.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Qlikview Cookbook: Conditional Show of Details &lt;A href="http://qlikviewcookbook.com/recipes/download-info/conditional-show-of-details/" target="_blank" rel="noopener"&gt;http://qlikviewcookbook.com/recipes/download-info/conditional-show-of-details/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;-Rob&lt;BR /&gt;&lt;A href="http://masterssummit.com" target="_blank" rel="noopener"&gt;http://masterssummit.com&lt;/A&gt;&lt;BR /&gt;&lt;A href="http://qlikviewcookbook.com" target="_blank" rel="noopener"&gt;http://qlikviewcookbook.com&lt;/A&gt;&lt;BR /&gt;&lt;A href="http://www.easyqlik.com" target="_blank" rel="noopener"&gt;http://www.easyqlik.com&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 19 Dec 2019 16:19:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Print-a-Text-Object/m-p/1659045#M448576</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2019-12-19T16:19:31Z</dc:date>
    </item>
  </channel>
</rss>

