<?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 Exceptions and Error Handling in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Exceptions-and-Error-Handling/m-p/709769#M1055316</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Friends have requirement while loading data into QlikView need to Catch exceptions as If a column contains null,special chars,wild spaces like as&lt;/P&gt;&lt;P&gt;Office:&lt;/P&gt;&lt;P&gt;#N/A&lt;/P&gt;&lt;P&gt;#N/A&lt;/P&gt;&lt;P&gt;#N/A&lt;/P&gt;&lt;P&gt;#N/A&lt;/P&gt;&lt;P&gt;0&lt;/P&gt;&lt;P&gt;0&lt;/P&gt;&lt;P&gt;'&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;P&gt; IF(isnull([@1:3])=-1 or Len( Purgechar([@1:3], Chr(09) &amp;amp; Chr(32) &amp;amp; Chr(160) &amp;amp; Chr(12288)) or Text([@1:3]))='NULL',[@1:3]) as [Rep-OffOO] giving error&lt;/P&gt;&lt;P&gt;Am attaching sample data with code can any one help on Exceptions handling QVDGenerator_errorhandling.qvw have created variable ho hold current status error?&lt;/P&gt;&lt;P&gt;can any one suggest how to handle while loading into Qlik need to show case error data columns to user through mail saying data is wrong&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 28 Oct 2014 09:31:21 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2014-10-28T09:31:21Z</dc:date>
    <item>
      <title>Exceptions and Error Handling</title>
      <link>https://community.qlik.com/t5/QlikView/Exceptions-and-Error-Handling/m-p/709769#M1055316</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Friends have requirement while loading data into QlikView need to Catch exceptions as If a column contains null,special chars,wild spaces like as&lt;/P&gt;&lt;P&gt;Office:&lt;/P&gt;&lt;P&gt;#N/A&lt;/P&gt;&lt;P&gt;#N/A&lt;/P&gt;&lt;P&gt;#N/A&lt;/P&gt;&lt;P&gt;#N/A&lt;/P&gt;&lt;P&gt;0&lt;/P&gt;&lt;P&gt;0&lt;/P&gt;&lt;P&gt;'&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;P&gt; IF(isnull([@1:3])=-1 or Len( Purgechar([@1:3], Chr(09) &amp;amp; Chr(32) &amp;amp; Chr(160) &amp;amp; Chr(12288)) or Text([@1:3]))='NULL',[@1:3]) as [Rep-OffOO] giving error&lt;/P&gt;&lt;P&gt;Am attaching sample data with code can any one help on Exceptions handling QVDGenerator_errorhandling.qvw have created variable ho hold current status error?&lt;/P&gt;&lt;P&gt;can any one suggest how to handle while loading into Qlik need to show case error data columns to user through mail saying data is wrong&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Oct 2014 09:31:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Exceptions-and-Error-Handling/m-p/709769#M1055316</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-10-28T09:31:21Z</dc:date>
    </item>
    <item>
      <title>Re: Exceptions and Error Handling</title>
      <link>https://community.qlik.com/t5/QlikView/Exceptions-and-Error-Handling/m-p/709770#M1055317</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;You have give the same column &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt; [Rep-OffOO] for two columns that is why you are getting error.&amp;nbsp; You rename the second column.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;STRONG&gt;IF(isnull([@1:3])=-1 or Len( Purgechar([@1:3], Chr(09) &amp;amp; Chr(32) &amp;amp; Chr(160) &amp;amp; Chr(12288)) or Text([@1:3]))='NULL',[@1:3]) as [Rep-OffOO] &lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you just want Characters in the field then use below condition&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;IF(isnull([@1:3]) or Len(Purgechar([@1:3], 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz')) &amp;gt;0, [@1:3]) as [Rep-OffOO] &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Regards,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;jagan.&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Oct 2014 06:31:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Exceptions-and-Error-Handling/m-p/709770#M1055317</guid>
      <dc:creator>jagan</dc:creator>
      <dc:date>2014-10-29T06:31:12Z</dc:date>
    </item>
  </channel>
</rss>

