<?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: IF Statement for a Dimension in Chart Properties in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/IF-Statement-for-a-Dimension-in-Chart-Properties/m-p/742246#M1020914</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That worked, is there a way to remove the dash - from the data?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;termDt&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 18 Mar 2015 13:21:06 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2015-03-18T13:21:06Z</dc:date>
    <item>
      <title>IF Statement for a Dimension in Chart Properties</title>
      <link>https://community.qlik.com/t5/QlikView/IF-Statement-for-a-Dimension-in-Chart-Properties/m-p/742243#M1020911</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If a value is blank or null return blank...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a date 12/31/9999&amp;nbsp; 12:00:00 AM and I would like to say if this date exist return blank for the rows...I cannot get this to work. Help?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-family: Times New Roman; font-size: 12pt;"&gt; Chart Properties&amp;gt;Dimensions&amp;gt;Enable Conditional&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P class="MsoNormal" style="margin: 0in 0in 0pt; line-height: normal; mso-layout-grid-align: none;"&gt;&lt;SPAN style="color: black; font-family: 'Courier New'; font-size: 9pt;"&gt;=&lt;/SPAN&gt;&lt;SPAN style="color: blue; font-family: 'Courier New'; font-size: 9pt;"&gt;IF&lt;/SPAN&gt;&lt;SPAN style="color: black; font-family: 'Courier New'; font-size: 9pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: maroon; font-family: 'Courier New'; font-size: 9pt;"&gt;termDt&lt;/SPAN&gt;&lt;SPAN style="color: black; font-family: 'Courier New'; font-size: 9pt;"&gt;= '12/31/9999 12:00:00 AM' ,&lt;/SPAN&gt;&lt;SPAN style="color: blue; font-family: 'Courier New'; font-size: 9pt;"&gt;null&lt;/SPAN&gt;&lt;SPAN style="color: black; font-family: 'Courier New'; font-size: 9pt;"&gt;(),&lt;/SPAN&gt;&lt;SPAN style="color: maroon; font-family: 'Courier New'; font-size: 9pt;"&gt;termDt&lt;/SPAN&gt;&lt;SPAN style="color: black; font-family: 'Courier New'; font-size: 9pt;"&gt;) Or&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="MsoNormal" style="margin: 0in 0in 0pt; line-height: normal; mso-layout-grid-align: none;"&gt;&lt;SPAN style="color: black; font-family: 'Courier New'; font-size: 9pt;"&gt;&lt;SPAN style="color: black; font-family: 'Courier New'; font-size: 9pt;"&gt;=&lt;/SPAN&gt;&lt;SPAN style="color: blue; font-family: 'Courier New'; font-size: 9pt;"&gt;IF&lt;/SPAN&gt;&lt;SPAN style="color: black; font-family: 'Courier New'; font-size: 9pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: maroon; font-family: 'Courier New'; font-size: 9pt;"&gt;termDt&lt;/SPAN&gt;&lt;SPAN style="color: black; font-family: 'Courier New'; font-size: 9pt;"&gt;= '12/31/9999 12:00:00 AM' ,'',&lt;/SPAN&gt;&lt;SPAN style="color: maroon; font-family: 'Courier New'; font-size: 9pt;"&gt;termDt&lt;/SPAN&gt;&lt;SPAN style="color: black; font-family: 'Courier New'; font-size: 9pt;"&gt;)&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-family: Times New Roman; font-size: 12pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Mar 2015 13:06:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/IF-Statement-for-a-Dimension-in-Chart-Properties/m-p/742243#M1020911</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-03-18T13:06:38Z</dc:date>
    </item>
    <item>
      <title>Re: IF Statement for a Dimension in Chart Properties</title>
      <link>https://community.qlik.com/t5/QlikView/IF-Statement-for-a-Dimension-in-Chart-Properties/m-p/742244#M1020912</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You should probably do this in the script, e.g&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; If(termDt= '12/31/9999 12:00:00 AM' ,null(),termDt) as termDt&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;HIC&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Mar 2015 13:12:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/IF-Statement-for-a-Dimension-in-Chart-Properties/m-p/742244#M1020912</guid>
      <dc:creator>hic</dc:creator>
      <dc:date>2015-03-18T13:12:06Z</dc:date>
    </item>
    <item>
      <title>Re: IF Statement for a Dimension in Chart Properties</title>
      <link>https://community.qlik.com/t5/QlikView/IF-Statement-for-a-Dimension-in-Chart-Properties/m-p/742245#M1020913</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i think the problem with date format, can u try some thing like&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 9pt; font-family: 'Courier New'; color: black;"&gt;=&lt;/SPAN&gt;&lt;SPAN style="font-size: 9pt; font-family: 'Courier New'; color: blue;"&gt;IF&lt;/SPAN&gt;&lt;SPAN style="font-size: 9pt; font-family: 'Courier New'; color: black;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="font-size: 9pt; font-family: 'Courier New'; color: maroon;"&gt;termDt&lt;/SPAN&gt;&lt;SPAN style="font-size: 9pt; font-family: 'Courier New'; color: black;"&gt;= date#(('12/31/9999 12:00:00 AM','the format of required datetime stamp') ,&lt;/SPAN&gt;&lt;SPAN style="font-size: 9pt; font-family: 'Courier New'; color: blue;"&gt;null&lt;/SPAN&gt;&lt;SPAN style="font-size: 9pt; font-family: 'Courier New'; color: black;"&gt;(),&lt;/SPAN&gt;&lt;SPAN style="font-size: 9pt; font-family: 'Courier New'; color: maroon;"&gt;termDt&lt;/SPAN&gt;&lt;SPAN style="font-size: 9pt; font-family: 'Courier New'; color: black;"&gt;)&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Mar 2015 13:17:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/IF-Statement-for-a-Dimension-in-Chart-Properties/m-p/742245#M1020913</guid>
      <dc:creator>buzzy996</dc:creator>
      <dc:date>2015-03-18T13:17:03Z</dc:date>
    </item>
    <item>
      <title>Re: IF Statement for a Dimension in Chart Properties</title>
      <link>https://community.qlik.com/t5/QlikView/IF-Statement-for-a-Dimension-in-Chart-Properties/m-p/742246#M1020914</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That worked, is there a way to remove the dash - from the data?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;termDt&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Mar 2015 13:21:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/IF-Statement-for-a-Dimension-in-Chart-Properties/m-p/742246#M1020914</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-03-18T13:21:06Z</dc:date>
    </item>
    <item>
      <title>Re: IF Statement for a Dimension in Chart Properties</title>
      <link>https://community.qlik.com/t5/QlikView/IF-Statement-for-a-Dimension-in-Chart-Properties/m-p/742247#M1020915</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;First condition is correct in dimensions tab.&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;If(termDt= '12/31/9999 12:00:00 AM' ,null(),termDt)&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Mar 2015 13:25:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/IF-Statement-for-a-Dimension-in-Chart-Properties/m-p/742247#M1020915</guid>
      <dc:creator />
      <dc:date>2015-03-18T13:25:31Z</dc:date>
    </item>
    <item>
      <title>Re: IF Statement for a Dimension in Chart Properties</title>
      <link>https://community.qlik.com/t5/QlikView/IF-Statement-for-a-Dimension-in-Chart-Properties/m-p/742248#M1020916</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;select your dimension under the dimension tab and click on suppress when value is null&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Mar 2015 13:36:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/IF-Statement-for-a-Dimension-in-Chart-Properties/m-p/742248#M1020916</guid>
      <dc:creator>maleksafa</dc:creator>
      <dc:date>2015-03-18T13:36:33Z</dc:date>
    </item>
    <item>
      <title>Re: IF Statement for a Dimension in Chart Properties</title>
      <link>https://community.qlik.com/t5/QlikView/IF-Statement-for-a-Dimension-in-Chart-Properties/m-p/742249#M1020917</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Remove the null values----&amp;gt; Presentation tab remove Null Symbol in box. Thank you all for the help&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Mar 2015 15:21:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/IF-Statement-for-a-Dimension-in-Chart-Properties/m-p/742249#M1020917</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-03-18T15:21:43Z</dc:date>
    </item>
  </channel>
</rss>

