<?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: Nested Ifs in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Nested-Ifs/m-p/133366#M601205</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF (Match([External Agency],'') and ([Request Status]&amp;nbsp; = 'Filled'), 'CL',[External Agency]) as [External Agency]&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 04 Oct 2018 01:35:08 GMT</pubDate>
    <dc:creator>BalaBhaskar_Qlik</dc:creator>
    <dc:date>2018-10-04T01:35:08Z</dc:date>
    <item>
      <title>Nested Ifs</title>
      <link>https://community.qlik.com/t5/QlikView/Nested-Ifs/m-p/133364#M601203</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have a spreadsheet input file that I am trying to manipulate in the load script.&amp;nbsp; In the below script portion, I need to use the [Agency Name] as is or conditionally generate two new values being 'Cancelled Shift' or 'CL' respectively.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; IF ([External Agency] &amp;lt;&amp;gt; ' ' and ([Request Status]&amp;nbsp; = 'Not Fillable'), 'Cancelled Shift',[External Agency]) as [External Agency],&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; IF ([External Agency] =&amp;nbsp; ' ' and ([Request Status]&amp;nbsp; = 'Filled'), 'CL',[External Agency]),&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;as written, the first IF statement is executed correctly but the second IF statement is ignored.&amp;nbsp; Any help would be much appreciated.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Oct 2018 00:17:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Nested-Ifs/m-p/133364#M601203</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-10-04T00:17:50Z</dc:date>
    </item>
    <item>
      <title>Re: Nested Ifs</title>
      <link>https://community.qlik.com/t5/QlikView/Nested-Ifs/m-p/133365#M601204</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF (IsNull([External Agency]) and ([Request Status]&amp;nbsp; = 'Filled'), 'CL',[External Agency]) as [External Agency]&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Oct 2018 01:34:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Nested-Ifs/m-p/133365#M601204</guid>
      <dc:creator>BalaBhaskar_Qlik</dc:creator>
      <dc:date>2018-10-04T01:34:47Z</dc:date>
    </item>
    <item>
      <title>Re: Nested Ifs</title>
      <link>https://community.qlik.com/t5/QlikView/Nested-Ifs/m-p/133366#M601205</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF (Match([External Agency],'') and ([Request Status]&amp;nbsp; = 'Filled'), 'CL',[External Agency]) as [External Agency]&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Oct 2018 01:35:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Nested-Ifs/m-p/133366#M601205</guid>
      <dc:creator>BalaBhaskar_Qlik</dc:creator>
      <dc:date>2018-10-04T01:35:08Z</dc:date>
    </item>
    <item>
      <title>Re: Nested Ifs</title>
      <link>https://community.qlik.com/t5/QlikView/Nested-Ifs/m-p/133367#M601206</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You need to check which chars are really within your fieldvalues - any kind and numbers of spaces, empty string, NULL, ... to be able to query it properly. Nevertheless quite often worked the following:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if(len(trim([External Agency])) = 0, ... respectively if(len(trim([External Agency])) &amp;gt;= 1, ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Oct 2018 06:48:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Nested-Ifs/m-p/133367#M601206</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2018-10-04T06:48:36Z</dc:date>
    </item>
    <item>
      <title>Re: Nested Ifs</title>
      <link>https://community.qlik.com/t5/QlikView/Nested-Ifs/m-p/133368#M601207</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Contrary to your thread title your code defines two separate If() expressions instead of one nested If().&lt;/P&gt;&lt;P&gt;Can you post some sample values as well as your expected result to clarify?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&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;Marco&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Oct 2018 19:41:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Nested-Ifs/m-p/133368#M601207</guid>
      <dc:creator>MarcoWedel</dc:creator>
      <dc:date>2018-10-05T19:41:45Z</dc:date>
    </item>
    <item>
      <title>Re: Nested Ifs</title>
      <link>https://community.qlik.com/t5/QlikView/Nested-Ifs/m-p/133369#M601208</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Marco:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You are right.&amp;nbsp; I do not know how to correctly format a "nested if".&amp;nbsp; So, how would I convert the following into a correct "nested if"?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;IF ([External Agency]) &amp;lt;&amp;gt; ' ' and ([Request Status])&amp;nbsp; = 'Not Fillable'), 'Cancelled Shift',[External Agency]) as [External Agency],&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;IF ([External Agency] =&amp;nbsp; ' ' and ([Request Status]&amp;nbsp; = 'Filled'), 'CL',[External Agency]),&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;So if the value of &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;([External Agency] coming in was "&lt;STRONG&gt;Alpha&lt;/STRONG&gt;" and &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;([Request Status]&amp;nbsp; = '&lt;STRONG&gt;Not Fillable&lt;/STRONG&gt;'), the value of &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;([External Agency]) would be&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt; written as &lt;STRONG&gt;"Cancelled Shift",&lt;/STRONG&gt; else &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;([External Agency])&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;or&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;If &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;the value of &lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;([External Agency] coming in was "&lt;STRONG&gt;null&lt;/STRONG&gt;" and &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;([Request Status]&amp;nbsp; = '&lt;STRONG&gt;Filled&lt;/STRONG&gt;'), &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;the value of &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;([External Agency]) would be&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt; written as &lt;STRONG&gt;"CL",&lt;/STRONG&gt; else &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;([External Agency])&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Thanks for your help.&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13px; 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-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 06 Oct 2018 15:14:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Nested-Ifs/m-p/133369#M601208</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-10-06T15:14:40Z</dc:date>
    </item>
    <item>
      <title>Re: Nested Ifs</title>
      <link>https://community.qlik.com/t5/QlikView/Nested-Ifs/m-p/133370#M601209</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Marcus:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your reply.&amp;nbsp; Your response works but my other problem was how to correctly format a "nested if" as outlined in my response to Marco Wedel.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Much obliged.&lt;/P&gt;&lt;P&gt;David&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 06 Oct 2018 15:18:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Nested-Ifs/m-p/133370#M601209</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-10-06T15:18:23Z</dc:date>
    </item>
    <item>
      <title>Re: Nested Ifs</title>
      <link>https://community.qlik.com/t5/QlikView/Nested-Ifs/m-p/133371#M601210</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Do you mean something like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF(len(trim([External Agency])) = 0 and [Request Status]&amp;nbsp; = 'Not Fillable', 'Cancelled Shift',&lt;/P&gt;&lt;P&gt;IF(len(trim([External Agency])) &amp;gt;= 1 and [Request Status]&amp;nbsp; = 'Filled', 'CL', [External Agency])) as [External Agency],&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;which is:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if(condition, then, if(condition, then, else))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 06 Oct 2018 16:03:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Nested-Ifs/m-p/133371#M601210</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2018-10-06T16:03:49Z</dc:date>
    </item>
    <item>
      <title>Re: Nested Ifs</title>
      <link>https://community.qlik.com/t5/QlikView/Nested-Ifs/m-p/133372#M601211</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Thanks, guess I got it.&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;One possible solution should be something like:&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_macro_code _jivemacro_uid_15388519714084456 jive_text_macro" jivemacro_uid="_15388519714084456" modifiedtitle="true"&gt;
&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;If(Len(Trim([External Agency])) and [Request Status]='Not Fillable',&lt;/P&gt;
&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp; 'Cancelled Shift',&lt;/P&gt;
&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp; If(not Len(Trim([External Agency])) and [Request Status]='Filled',&lt;/P&gt;
&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'CL',&lt;/P&gt;
&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [External Agency]&lt;/P&gt;
&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; )&lt;/P&gt;
&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp; ) &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt; as [External Agency]&lt;/SPAN&gt;&lt;/P&gt;

&lt;/PRE&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;hope this helps&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;regards&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Marco&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 06 Oct 2018 18:52:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Nested-Ifs/m-p/133372#M601211</guid>
      <dc:creator>MarcoWedel</dc:creator>
      <dc:date>2018-10-06T18:52:58Z</dc:date>
    </item>
    <item>
      <title>Re: Nested Ifs</title>
      <link>https://community.qlik.com/t5/QlikView/Nested-Ifs/m-p/133373#M601212</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you Marco.&amp;nbsp; It was the need for two ")' after line 5 of your response that I was missing.&amp;nbsp; It was hard to find a good example of nested ifs anywhere.&amp;nbsp; Regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;David&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 07 Oct 2018 17:09:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Nested-Ifs/m-p/133373#M601212</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-10-07T17:09:53Z</dc:date>
    </item>
    <item>
      <title>Re: Nested Ifs</title>
      <link>https://community.qlik.com/t5/QlikView/Nested-Ifs/m-p/133374#M601213</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for your help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 07 Oct 2018 17:11:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Nested-Ifs/m-p/133374#M601213</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-10-07T17:11:02Z</dc:date>
    </item>
  </channel>
</rss>

