<?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 NPrinting Word Report in Qlik NPrinting</title>
    <link>https://community.qlik.com/t5/Qlik-NPrinting/NPrinting-Word-Report/m-p/1053038#M8757</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm using NPrinting to create a word report on demand. Everything is working fine with the on demand functions. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The set up of the NPrinting report is as follows:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;The data needed from 3 QV tables and placing the individual field into the word document.&lt;/LI&gt;&lt;LI&gt;The fields within these tables are placed within the word template. It's set up like a mail merge.&lt;/LI&gt;&lt;LI&gt;There will only be one row of data in each of these tables.&lt;/LI&gt;&lt;LI&gt;Users can not generate the report until a single record has been selected within the QV dashboard.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My issues is, if the field has a null or blank ('') value the name of the field will remain in the document &amp;lt;Field Name 1&amp;gt; rather than being surpressed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The only way around this, that i've found so far, is to test the value in the load script and replace null values with a single space (' ')&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Has anyone experainced this or found another way around it?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Many thanks, Simon&lt;/P&gt;&lt;P&gt;Director&lt;/P&gt;&lt;P&gt;Pathfinder Analytics Limited &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 17 Feb 2016 13:57:08 GMT</pubDate>
    <dc:creator />
    <dc:date>2016-02-17T13:57:08Z</dc:date>
    <item>
      <title>NPrinting Word Report</title>
      <link>https://community.qlik.com/t5/Qlik-NPrinting/NPrinting-Word-Report/m-p/1053038#M8757</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm using NPrinting to create a word report on demand. Everything is working fine with the on demand functions. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The set up of the NPrinting report is as follows:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;The data needed from 3 QV tables and placing the individual field into the word document.&lt;/LI&gt;&lt;LI&gt;The fields within these tables are placed within the word template. It's set up like a mail merge.&lt;/LI&gt;&lt;LI&gt;There will only be one row of data in each of these tables.&lt;/LI&gt;&lt;LI&gt;Users can not generate the report until a single record has been selected within the QV dashboard.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My issues is, if the field has a null or blank ('') value the name of the field will remain in the document &amp;lt;Field Name 1&amp;gt; rather than being surpressed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The only way around this, that i've found so far, is to test the value in the load script and replace null values with a single space (' ')&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Has anyone experainced this or found another way around it?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Many thanks, Simon&lt;/P&gt;&lt;P&gt;Director&lt;/P&gt;&lt;P&gt;Pathfinder Analytics Limited &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Feb 2016 13:57:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-NPrinting/NPrinting-Word-Report/m-p/1053038#M8757</guid>
      <dc:creator />
      <dc:date>2016-02-17T13:57:08Z</dc:date>
    </item>
    <item>
      <title>Re: NPrinting Word Report</title>
      <link>https://community.qlik.com/t5/Qlik-NPrinting/NPrinting-Word-Report/m-p/1053039#M8758</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Simon,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I like your work around and I usually try to have a way to deal with nulls.&amp;nbsp; Here is a creative thought for you to solve your problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When your are placing your field in your Word template, use a formula.&amp;nbsp; In this case an if statement.&amp;nbsp; If the value is not null than, show your field.&amp;nbsp; the alternate in my case is to show Test.&amp;nbsp;&amp;nbsp; You can replace test with space n/a or whatever character you want.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Surgeon is the name of a field in my data model and this only produces output when it is selected.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=if([Surgeon] &amp;lt;&amp;gt; null(), [Surgeon],'Test')&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you have 4 fields, you can create 4 formulas&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="formula.PNG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/115048_formula.PNG" style="width: 620px; height: 396px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope that helps or at least gets you thinking to find your answer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Mike&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Feb 2016 00:06:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-NPrinting/NPrinting-Word-Report/m-p/1053039#M8758</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-02-18T00:06:01Z</dc:date>
    </item>
  </channel>
</rss>

