<?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 Comparing scenarios in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Comparing-scenarios/m-p/193816#M54940</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="margin: 0in 0in 10pt;"&gt;Hi guys...&lt;/P&gt;&lt;P style="margin: 0in 0in 10pt;"&gt;I have a challenge. I have two fields, ResponsiveCatCode and ResponsiveCategories. I want formula for certain scenarios.&lt;/P&gt;&lt;P style="margin: 0in 0in 10pt;"&gt;If ResponsiveCatCode = ResponsiveCategories, it should not show Error AND ResponsiveCatCode not equal to ResponsiveCategories, it should give 'Error1' AND if ResponsiveCategories is blank, it should give 'Error2'.&lt;/P&gt;&lt;P style="margin: 0in 0in 10pt;"&gt;I tried with the below formula,&lt;/P&gt;&lt;P style="margin: 0in 0in 0pt; line-height: normal; mso-layout-grid-align: none;"&gt;=If(ResponCatCode&amp;lt;&amp;gt;ResponsiveCategories, 'Error1' &amp;amp; If(ResponCatCode=ResponCatCode &amp;amp; IsNull(ResponsiveCategories), 'Error2'))&lt;/P&gt;&lt;P style="margin: 0in 0in 10pt;"&gt;&lt;/P&gt;&lt;P style="margin: 0in 0in 10pt;"&gt;but it dint work..&lt;/P&gt;&lt;P style="margin: 0in 0in 10pt;"&gt;Please help me…&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 25 Mar 2010 14:34:15 GMT</pubDate>
    <dc:creator>renjithpl</dc:creator>
    <dc:date>2010-03-25T14:34:15Z</dc:date>
    <item>
      <title>Comparing scenarios</title>
      <link>https://community.qlik.com/t5/QlikView/Comparing-scenarios/m-p/193816#M54940</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="margin: 0in 0in 10pt;"&gt;Hi guys...&lt;/P&gt;&lt;P style="margin: 0in 0in 10pt;"&gt;I have a challenge. I have two fields, ResponsiveCatCode and ResponsiveCategories. I want formula for certain scenarios.&lt;/P&gt;&lt;P style="margin: 0in 0in 10pt;"&gt;If ResponsiveCatCode = ResponsiveCategories, it should not show Error AND ResponsiveCatCode not equal to ResponsiveCategories, it should give 'Error1' AND if ResponsiveCategories is blank, it should give 'Error2'.&lt;/P&gt;&lt;P style="margin: 0in 0in 10pt;"&gt;I tried with the below formula,&lt;/P&gt;&lt;P style="margin: 0in 0in 0pt; line-height: normal; mso-layout-grid-align: none;"&gt;=If(ResponCatCode&amp;lt;&amp;gt;ResponsiveCategories, 'Error1' &amp;amp; If(ResponCatCode=ResponCatCode &amp;amp; IsNull(ResponsiveCategories), 'Error2'))&lt;/P&gt;&lt;P style="margin: 0in 0in 10pt;"&gt;&lt;/P&gt;&lt;P style="margin: 0in 0in 10pt;"&gt;but it dint work..&lt;/P&gt;&lt;P style="margin: 0in 0in 10pt;"&gt;Please help me…&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Mar 2010 14:34:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Comparing-scenarios/m-p/193816#M54940</guid>
      <dc:creator>renjithpl</dc:creator>
      <dc:date>2010-03-25T14:34:15Z</dc:date>
    </item>
    <item>
      <title>Comparing scenarios</title>
      <link>https://community.qlik.com/t5/QlikView/Comparing-scenarios/m-p/193817#M54941</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try something like this (2 If statements encapsulated):&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;&lt;BR /&gt;=If(ResponCatCode&amp;lt;&amp;gt;ResponsiveCategories, 'Error1',If(ResponCatCode=ResponCatCode &amp;amp; IsNull(ResponsiveCategories), 'Error2')))&lt;BR /&gt;&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Mar 2010 14:40:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Comparing-scenarios/m-p/193817#M54941</guid>
      <dc:creator />
      <dc:date>2010-03-25T14:40:47Z</dc:date>
    </item>
    <item>
      <title>Comparing scenarios</title>
      <link>https://community.qlik.com/t5/QlikView/Comparing-scenarios/m-p/193818#M54942</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Think you already where on the right path with the solution ... but only the if should be build up differently ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;&lt;BR /&gt;If(ResponCatCode&amp;lt;&amp;gt;ResponsiveCategories, 'Error1',&lt;BR /&gt; If(ResponCatCode=ResponCatCode and IsNull(ResponsiveCategories), 'Error2'))&lt;BR /&gt;&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anita&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Mar 2010 14:41:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Comparing-scenarios/m-p/193818#M54942</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2010-03-25T14:41:22Z</dc:date>
    </item>
  </channel>
</rss>

