<?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: Straight table if() statements in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Straight-table-if-statements/m-p/607415#M1104648</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes of course, how stupid of me. While looking into aggr() I found above(), and just used it in what I already had. Rather than rethinking it!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 24 Mar 2014 08:12:40 GMT</pubDate>
    <dc:creator />
    <dc:date>2014-03-24T08:12:40Z</dc:date>
    <item>
      <title>Straight table if() statements</title>
      <link>https://community.qlik.com/t5/QlikView/Straight-table-if-statements/m-p/607397#M1104630</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello all, this is my first post and I am fairly new to QlikView so please bear with me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a set of information illustrated by the table below, I have labelled them A, B &amp;amp; Boolean so hopefully the answer will apply to more people than just my specific case.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE border="1" class="jiveBorder" height="194" style="border: 1px solid #000000; width: 143px; height: 175px;"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TH style="text-align: center; background-color: #6690bc; color: #ffffff; padding: 2px;" valign="middle"&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;&lt;STRONG&gt;Field A&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TH&gt;&lt;TH style="text-align: center; background-color: #6690bc; color: #ffffff; padding: 2px;" valign="middle"&gt;&lt;STRONG&gt;Field B&lt;/STRONG&gt;&lt;/TH&gt;&lt;TH style="text-align: center; background-color: #6690bc; color: #ffffff; padding: 2px;" valign="middle"&gt;&lt;STRONG&gt;Boolean&lt;/STRONG&gt;&lt;/TH&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;A1&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;B1&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;1&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;A1&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;B2&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;0&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;A1&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;B3&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;0&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;A1&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;B4&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;1&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;A2&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;B1&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;1&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;etc&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;etc&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;etc&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In my application though, Field A is basically a project number, Field B is a project phase and the boolean is whether or not that phase is complete.&lt;/P&gt;&lt;P&gt;Basically what I need is to be able to say 'If B2 is not complete AND B1 is complete then B2 is due' So that the output would look something like:&lt;/P&gt;&lt;TABLE border="1" class="jiveBorder" height="114" style="border: 1px solid #000000; width: 110px; height: 86px;"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TH style="text-align: center; background-color: #6690bc; color: #ffffff; padding: 2px;" valign="middle"&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;STRONG&gt;Field A&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TH&gt;&lt;TH style="text-align: center; background-color: #6690bc; color: #ffffff; padding: 2px;" valign="middle"&gt;&lt;STRONG&gt;Field B&lt;/STRONG&gt;&lt;/TH&gt;&lt;TH style="text-align: center; background-color: #6690bc; color: #ffffff; padding: 2px;" valign="middle"&gt;Is it Due&lt;/TH&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;A1&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;B2&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;Due&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;etc&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;etc&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;etc&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I thought something like:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=if(FieldB='B2' AND Boolean = 0, if(FieldA='B1' AND Boolean = 1, 'Due', 'Not Due'))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But I think I'm on completely the wrong track, do I need to load the information differently?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hopefully this is clear enough, and I'm not asking too stupid a question&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Mar 2014 12:24:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Straight-table-if-statements/m-p/607397#M1104630</guid>
      <dc:creator />
      <dc:date>2014-03-21T12:24:03Z</dc:date>
    </item>
    <item>
      <title>Re: Straight table if() statements</title>
      <link>https://community.qlik.com/t5/QlikView/Straight-table-if-statements/m-p/607398#M1104631</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;As i understand might you have looking for this please check code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;T:&lt;/P&gt;&lt;P&gt;LOAD * Inline&lt;/P&gt;&lt;P&gt;[&lt;/P&gt;&lt;P&gt;FieldA,FieldB,Boolean&lt;/P&gt;&lt;P&gt;A1, B1, 1&lt;/P&gt;&lt;P&gt;A1, B2, 0&lt;/P&gt;&lt;P&gt;A1, B3, 0&lt;/P&gt;&lt;P&gt;A1, B4, 1&lt;/P&gt;&lt;P&gt;A2, B1, 1&lt;/P&gt;&lt;P&gt;etc, etc, etc&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;load&lt;/P&gt;&lt;P&gt;FieldA,FieldB,Boolean,&lt;/P&gt;&lt;P&gt;if(Boolean = 0,'Due','Not Due') as Flag&lt;/P&gt;&lt;P&gt;Resident T;&lt;/P&gt;&lt;P&gt;DROP Table T;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Mar 2014 12:36:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Straight-table-if-statements/m-p/607398#M1104631</guid>
      <dc:creator>its_anandrjs</dc:creator>
      <dc:date>2014-03-21T12:36:54Z</dc:date>
    </item>
    <item>
      <title>Re: Straight table if() statements</title>
      <link>https://community.qlik.com/t5/QlikView/Straight-table-if-statements/m-p/607399#M1104632</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Anand,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks a lot for responding,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Not quite, If a project phase is not complete it is not necessarily 'Due' because of dependencies. The important part is that, if the phase before it is complete then it is due so in this example below:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE border="1" class="jiveBorder" height="194" style="border: 1px solid #000000; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;THEAD style="border: 0px; font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;TR style="border: 0px; font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;TH class="header" style="border: 1px solid #000000; font-style: inherit; font-family: inherit; text-align: center; color: #ffffff; background-color: #6690bc; background-position: no-repeat no-repeat;" valign="middle"&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 10pt; font-family: inherit;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;Field A&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TH&gt;&lt;TH class="header" style="border: 1px solid #000000; font-style: inherit; font-family: inherit; text-align: center; color: #ffffff; background-color: #6690bc; background-position: no-repeat no-repeat;" valign="middle"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;Field B&lt;/STRONG&gt;&lt;/TH&gt;&lt;TH class="header" style="border: 1px solid #000000; font-style: inherit; font-family: inherit; text-align: center; color: #ffffff; background-color: #6690bc; background-position: no-repeat no-repeat;" valign="middle"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;Boolean&lt;/STRONG&gt;&lt;/TH&gt;&lt;/TR&gt;&lt;/THEAD&gt;&lt;TBODY style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;TR style="border: 0px; font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;TD style="border: 1px solid #000000; font-style: inherit; font-family: inherit;"&gt;A1&lt;/TD&gt;&lt;TD style="border: 1px solid #000000; font-style: inherit; font-family: inherit;"&gt;B1&lt;/TD&gt;&lt;TD style="border: 1px solid #000000; font-style: inherit; font-family: inherit;"&gt;1&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="border: 0px; font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;TD style="border: 1px solid #000000; font-style: inherit; font-family: inherit;"&gt;A1&lt;/TD&gt;&lt;TD style="border: 1px solid #000000; font-style: inherit; font-family: inherit;"&gt;B2&lt;/TD&gt;&lt;TD style="border: 1px solid #000000; font-style: inherit; font-family: inherit;"&gt;0&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="border: 0px; font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;TD style="border: 1px solid #000000; font-style: inherit; font-family: inherit;"&gt;A1&lt;/TD&gt;&lt;TD style="border: 1px solid #000000; font-style: inherit; font-family: inherit;"&gt;B3&lt;/TD&gt;&lt;TD style="border: 1px solid #000000; font-style: inherit; font-family: inherit;"&gt;0&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="border: 0px; font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;TD style="border: 1px solid #000000; font-style: inherit; font-family: inherit;"&gt;A1&lt;/TD&gt;&lt;TD style="border: 1px solid #000000; font-style: inherit; font-family: inherit;"&gt;B4&lt;/TD&gt;&lt;TD style="border: 1px solid #000000; font-style: inherit; font-family: inherit;"&gt;1&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="border: 0px; font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;TD style="border: 1px solid #000000; font-style: inherit; font-family: inherit;"&gt;A2&lt;/TD&gt;&lt;TD style="border: 1px solid #000000; font-style: inherit; font-family: inherit;"&gt;B1&lt;/TD&gt;&lt;TD style="border: 1px solid #000000; font-style: inherit; font-family: inherit;"&gt;1&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In project 'A1' phase 'B2' is Due, but 'B3' is not.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Mar 2014 12:44:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Straight-table-if-statements/m-p/607399#M1104632</guid>
      <dc:creator />
      <dc:date>2014-03-21T12:44:11Z</dc:date>
    </item>
    <item>
      <title>Re: Straight table if() statements</title>
      <link>https://community.qlik.com/t5/QlikView/Straight-table-if-statements/m-p/607400#M1104633</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;Ok but how you identify the B3 is not Due and what is the use of Boolean field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Mar 2014 12:48:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Straight-table-if-statements/m-p/607400#M1104633</guid>
      <dc:creator>its_anandrjs</dc:creator>
      <dc:date>2014-03-21T12:48:12Z</dc:date>
    </item>
    <item>
      <title>Re: Straight table if() statements</title>
      <link>https://community.qlik.com/t5/QlikView/Straight-table-if-statements/m-p/607401#M1104634</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Well exactly, that is what I am asking. Perhaps I was not clear enough. Is there an expression I can write for the given table to add a column saying 'If the row above is complete and this row is not, then it is due'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The boolean says whether a row is complete or not.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sorry if it is not a very good question&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Mar 2014 12:55:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Straight-table-if-statements/m-p/607401#M1104634</guid>
      <dc:creator />
      <dc:date>2014-03-21T12:55:56Z</dc:date>
    </item>
    <item>
      <title>Re: Straight table if() statements</title>
      <link>https://community.qlik.com/t5/QlikView/Straight-table-if-statements/m-p/607402#M1104635</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;Yes you are right if any field is created with check the project is completed or not then you are able to display that in application is there any other field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Mar 2014 13:01:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Straight-table-if-statements/m-p/607402#M1104635</guid>
      <dc:creator>its_anandrjs</dc:creator>
      <dc:date>2014-03-21T13:01:43Z</dc:date>
    </item>
    <item>
      <title>Re: Straight table if() statements</title>
      <link>https://community.qlik.com/t5/QlikView/Straight-table-if-statements/m-p/607403#M1104636</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think there has been some mis-communication, thank you for your help anyway&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Mar 2014 14:09:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Straight-table-if-statements/m-p/607403#M1104636</guid>
      <dc:creator />
      <dc:date>2014-03-21T14:09:05Z</dc:date>
    </item>
    <item>
      <title>Re: Straight table if() statements</title>
      <link>https://community.qlik.com/t5/QlikView/Straight-table-if-statements/m-p/607404#M1104637</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;I think there is some reference field for that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Mar 2014 14:16:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Straight-table-if-statements/m-p/607404#M1104637</guid>
      <dc:creator>its_anandrjs</dc:creator>
      <dc:date>2014-03-21T14:16:41Z</dc:date>
    </item>
    <item>
      <title>Re: Straight table if() statements</title>
      <link>https://community.qlik.com/t5/QlikView/Straight-table-if-statements/m-p/607405#M1104638</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;Just Try this in your script,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If(FieldB='B2' AND Boolean=0,'Due') as [Is it Due]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Mar 2014 14:32:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Straight-table-if-statements/m-p/607405#M1104638</guid>
      <dc:creator>PrashantSangle</dc:creator>
      <dc:date>2014-03-21T14:32:53Z</dc:date>
    </item>
    <item>
      <title>Re: Straight table if() statements</title>
      <link>https://community.qlik.com/t5/QlikView/Straight-table-if-statements/m-p/607406#M1104639</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Maxdreamer,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your response, unfortunately this is not what I am after,&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 a project phase is not complete it is not necessarily 'Due' because of dependencies. The important part is that, if the phase before it is complete then it is due"&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;It appears what you suggest would just say Due if the Boolean is 0&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;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Mar 2014 15:40:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Straight-table-if-statements/m-p/607406#M1104639</guid>
      <dc:creator />
      <dc:date>2014-03-21T15:40:44Z</dc:date>
    </item>
    <item>
      <title>Re: Straight table if() statements</title>
      <link>https://community.qlik.com/t5/QlikView/Straight-table-if-statements/m-p/607407#M1104640</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;I am no sure that i am understand clearly but as you say,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;"If B2 is not complete AND B1 is complete then B2 is due"&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I means you are evaluating value for FieldB only because there is no B2 in fieldA and You have to compare with your previous field only&lt;/P&gt;&lt;P&gt;Then use previous() in your script like,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if(FieldB='B2' AND Boolean = 0, if(Previous(FieldB)='B1' AND Previous(Boolean) = 1, 'Due', 'Not Due'),'Not Due') as [Is it Due],&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this will help you,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Mar 2014 16:03:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Straight-table-if-statements/m-p/607407#M1104640</guid>
      <dc:creator>PrashantSangle</dc:creator>
      <dc:date>2014-03-21T16:03:05Z</dc:date>
    </item>
    <item>
      <title>Re: Straight table if() statements</title>
      <link>https://community.qlik.com/t5/QlikView/Straight-table-if-statements/m-p/607408#M1104641</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can try something like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;T:&lt;/P&gt;&lt;P&gt;LOAD * Inline&lt;/P&gt;&lt;P&gt;[&lt;/P&gt;&lt;P&gt;FieldA,FieldB,Boolean&lt;/P&gt;&lt;P&gt;A1, B1, 1&lt;/P&gt;&lt;P&gt;A1, B2, 0&lt;/P&gt;&lt;P&gt;A1, B3, 0&lt;/P&gt;&lt;P&gt;A1, B4, 1&lt;/P&gt;&lt;P&gt;A2, B1, 1&lt;/P&gt;&lt;P&gt;etc, etc, etc&lt;/P&gt;&lt;P&gt;]&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;load&lt;/P&gt;&lt;P&gt;FieldA,&lt;/P&gt;&lt;P&gt;FieldB,&lt;/P&gt;&lt;P&gt;Boolean,&lt;/P&gt;&lt;P&gt;if(Peek(FieldA)=FieldA, if(Peek(Boolean)=1 and Boolean=0,'Due','Not due') ) as FlagNew,&lt;/P&gt;&lt;P&gt;if(Boolean = 0,'Due','Not Due') as Flag&lt;/P&gt;&lt;P&gt;Resident T;&lt;/P&gt;&lt;P&gt;DROP Table T;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Mar 2014 16:13:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Straight-table-if-statements/m-p/607408#M1104641</guid>
      <dc:creator>menta</dc:creator>
      <dc:date>2014-03-21T16:13:17Z</dc:date>
    </item>
    <item>
      <title>Re: Straight table if() statements</title>
      <link>https://community.qlik.com/t5/QlikView/Straight-table-if-statements/m-p/607409#M1104642</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think something like this should resolve your question:-&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;aggr(if(Boolean=0,'Due','Complete'),FieldB,FieldA)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Mar 2014 16:28:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Straight-table-if-statements/m-p/607409#M1104642</guid>
      <dc:creator />
      <dc:date>2014-03-21T16:28:29Z</dc:date>
    </item>
    <item>
      <title>Re: Straight table if() statements</title>
      <link>https://community.qlik.com/t5/QlikView/Straight-table-if-statements/m-p/607410#M1104643</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;may be you looking this&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;&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;=if(FieldB='B2' AND Boolean = 0,&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;'Due'&lt;/SPAN&gt;, if(FieldA='B1' AND Boolean = 1,'Due' , 'Not Due'))&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;hope this helps&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;&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;&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;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Mar 2014 16:37:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Straight-table-if-statements/m-p/607410#M1104643</guid>
      <dc:creator>SunilChauhan</dc:creator>
      <dc:date>2014-03-21T16:37:51Z</dc:date>
    </item>
    <item>
      <title>Re: Straight table if() statements</title>
      <link>https://community.qlik.com/t5/QlikView/Straight-table-if-statements/m-p/607411#M1104644</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Just looking at the documentation for aggr() and I think this is probably where I should be looking. So thanks for this!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The example you posted isn't quite right but it definitely seems like a step in the right direction&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I will look into this further, if it solves it I will let you know&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Mar 2014 16:51:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Straight-table-if-statements/m-p/607411#M1104644</guid>
      <dc:creator />
      <dc:date>2014-03-21T16:51:27Z</dc:date>
    </item>
    <item>
      <title>Re: Straight table if() statements</title>
      <link>https://community.qlik.com/t5/QlikView/Straight-table-if-statements/m-p/607412#M1104645</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This seems to be evaluating based on Field A being B1 at some stage. This would never be the case. Perhaps seeing the data like this might help:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE border="1" class="jiveBorder" height="170" style="border: 1px solid #000000; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; height: 135px; width: 141px;" width="139"&gt;&lt;THEAD style="border: 0px; font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;TR style="border: 0px; font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;TH class="header" style="padding-right: 4px; padding-left: 4px; border: 1px solid #000000; font-style: inherit; font-family: inherit; text-align: center; background-color: #6690bc; color: #ffffff; background-position: no-repeat no-repeat;" valign="middle"&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;SPAN style="font-size: 10pt; font-style: inherit; font-family: inherit; font-weight: inherit;"&gt;&lt;STRONG&gt;Proj #&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TH&gt;&lt;TH class="header" style="padding-right: 4px; padding-left: 4px; border: 1px solid #000000; font-style: inherit; font-family: inherit; text-align: center; background-color: #6690bc; color: #ffffff; background-position: no-repeat no-repeat;" valign="middle"&gt;Phase&lt;/TH&gt;&lt;TH class="header" style="padding-right: 4px; padding-left: 4px; border: 1px solid #000000; font-style: inherit; font-family: inherit; text-align: center; background-color: #6690bc; color: #ffffff; background-position: no-repeat no-repeat;" valign="middle"&gt;&lt;SPAN style="font-style: inherit; font-family: inherit;"&gt;&lt;STRONG&gt;Status&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/TH&gt;&lt;/TR&gt;&lt;/THEAD&gt;&lt;TBODY style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;TR style="border: 0px; font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;TD style="padding-right: 4px; padding-left: 4px; border: 1px solid #000000; font-style: inherit; font-family: inherit;"&gt;1001&lt;/TD&gt;&lt;TD style="padding-right: 4px; padding-left: 4px; border: 1px solid #000000; font-style: inherit; font-family: inherit;"&gt;PAY1&lt;/TD&gt;&lt;TD style="padding-right: 4px; padding-left: 4px; border: 1px solid #000000; font-style: inherit; font-family: inherit;"&gt;1&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="border: 0px; font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;TD style="padding-right: 4px; padding-left: 4px; border: 1px solid #000000; font-style: inherit; font-family: inherit;"&gt;1001&lt;/TD&gt;&lt;TD style="padding-right: 4px; padding-left: 4px; border: 1px solid #000000; font-style: inherit; font-family: inherit;"&gt;PAY2&lt;/TD&gt;&lt;TD style="padding-right: 4px; padding-left: 4px; border: 1px solid #000000; font-style: inherit; font-family: inherit;"&gt;0&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="border: 0px; font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;TD style="padding-right: 4px; padding-left: 4px; border: 1px solid #000000; font-style: inherit; font-family: inherit;"&gt;1001&lt;/TD&gt;&lt;TD style="padding-right: 4px; padding-left: 4px; border: 1px solid #000000; font-style: inherit; font-family: inherit;"&gt;PAY3&lt;/TD&gt;&lt;TD style="padding-right: 4px; padding-left: 4px; border: 1px solid #000000; font-style: inherit; font-family: inherit;"&gt;0&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="border: 0px; font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;TD style="padding-right: 4px; padding-left: 4px; border: 1px solid #000000; font-style: inherit; font-family: inherit;"&gt;1002&lt;/TD&gt;&lt;TD style="padding-right: 4px; padding-left: 4px; border: 1px solid #000000; font-style: inherit; font-family: inherit;"&gt;PAY1&lt;/TD&gt;&lt;TD style="padding-right: 4px; padding-left: 4px; border: 1px solid #000000; font-style: inherit; font-family: inherit;"&gt;1&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="border: 0px; font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;TD style="padding-right: 4px; padding-left: 4px; border: 1px solid #000000; font-style: inherit; font-family: inherit;"&gt;1002&lt;/TD&gt;&lt;TD style="padding-right: 4px; padding-left: 4px; border: 1px solid #000000; font-style: inherit; font-family: inherit;"&gt;PAY2&lt;/TD&gt;&lt;TD style="padding-right: 4px; padding-left: 4px; border: 1px solid #000000; font-style: inherit; font-family: inherit;"&gt;1&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When PAY1 is complete for a project, PAY2 is due. But PAY3 is not due until PAY2 is complete.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So I want to add a column using an expression to get the below effect:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE border="1" class="jiveBorder" height="170" style="border: 1px solid rgb(0, 0, 0); font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: rgb(61, 61, 61); height: 135px; width: 139px;"&gt;&lt;THEAD style="border: 0px; font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;TR style="border: 0px; font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;TH class="header" style="padding-right: 4px; padding-left: 4px; border: 1px solid #000000; font-style: inherit; font-family: inherit; text-align: center; background-color: #6690bc; color: #ffffff; background-position: no-repeat no-repeat;" valign="middle"&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;SPAN style="font-size: 10pt; font-style: inherit; font-family: inherit; font-weight: inherit;"&gt;&lt;STRONG&gt;Proj #&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TH&gt;&lt;TH class="header" style="padding-right: 4px; padding-left: 4px; border: 1px solid #000000; font-style: inherit; font-family: inherit; text-align: center; background-color: #6690bc; color: #ffffff; background-position: no-repeat no-repeat;" valign="middle"&gt;Phase&lt;/TH&gt;&lt;TH class="header" style="padding-right: 4px; padding-left: 4px; border: 1px solid #000000; font-style: inherit; font-family: inherit; text-align: center; background-color: #6690bc; color: #ffffff; background-position: no-repeat no-repeat;" valign="middle"&gt;&lt;SPAN style="font-style: inherit; font-family: inherit;"&gt;&lt;STRONG&gt;Status&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/TH&gt;&lt;TH class="header" style="padding-right: 4px; padding-left: 4px; border: 1px solid #000000; font-style: inherit; font-family: inherit; text-align: center; background-color: #6690bc; color: #ffffff; background-position: no-repeat no-repeat;" valign="middle"&gt;&lt;SPAN style="font-style: inherit; font-family: inherit;"&gt;&lt;STRONG&gt;Due&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/TH&gt;&lt;/TR&gt;&lt;/THEAD&gt;&lt;TBODY style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;TR style="border: 0px; font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;TD style="padding-right: 4px; padding-left: 4px; border: 1px solid #000000; font-style: inherit; font-family: inherit;"&gt;1001&lt;/TD&gt;&lt;TD style="padding-right: 4px; padding-left: 4px; border: 1px solid #000000; font-style: inherit; font-family: inherit;"&gt;PAY1&lt;/TD&gt;&lt;TD style="padding-right: 4px; padding-left: 4px; border: 1px solid #000000; font-style: inherit; font-family: inherit;"&gt;1&lt;/TD&gt;&lt;TD style="padding-right: 4px; padding-left: 4px; border: 1px solid #000000; font-style: inherit; font-family: inherit;"&gt;-&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="border: 0px; font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;TD style="padding-right: 4px; padding-left: 4px; border: 1px solid #000000; font-style: inherit; font-family: inherit;"&gt;1001&lt;/TD&gt;&lt;TD style="padding-right: 4px; padding-left: 4px; border: 1px solid #000000; font-style: inherit; font-family: inherit;"&gt;PAY2&lt;/TD&gt;&lt;TD style="padding-right: 4px; padding-left: 4px; border: 1px solid #000000; font-style: inherit; font-family: inherit;"&gt;0&lt;/TD&gt;&lt;TD style="padding-right: 4px; padding-left: 4px; border: 1px solid #000000; font-style: inherit; font-family: inherit;"&gt;Due&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="border: 0px; font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;TD style="padding-right: 4px; padding-left: 4px; border: 1px solid #000000; font-style: inherit; font-family: inherit;"&gt;1001&lt;/TD&gt;&lt;TD style="padding-right: 4px; padding-left: 4px; border: 1px solid #000000; font-style: inherit; font-family: inherit;"&gt;PAY3&lt;/TD&gt;&lt;TD style="padding-right: 4px; padding-left: 4px; border: 1px solid #000000; font-style: inherit; font-family: inherit;"&gt;0&lt;/TD&gt;&lt;TD style="padding-right: 4px; padding-left: 4px; border: 1px solid #000000; font-style: inherit; font-family: inherit;"&gt;-&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="border: 0px; font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;TD style="padding-right: 4px; padding-left: 4px; border: 1px solid #000000; font-style: inherit; font-family: inherit;"&gt;1002&lt;/TD&gt;&lt;TD style="padding-right: 4px; padding-left: 4px; border: 1px solid #000000; font-style: inherit; font-family: inherit;"&gt;PAY1&lt;/TD&gt;&lt;TD style="padding-right: 4px; padding-left: 4px; border: 1px solid #000000; font-style: inherit; font-family: inherit;"&gt;1&lt;/TD&gt;&lt;TD style="padding-right: 4px; padding-left: 4px; border: 1px solid #000000; font-style: inherit; font-family: inherit;"&gt;-&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="border: 0px; font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;TD style="padding-right: 4px; padding-left: 4px; border: 1px solid #000000; font-style: inherit; font-family: inherit;"&gt;1002&lt;/TD&gt;&lt;TD style="padding-right: 4px; padding-left: 4px; border: 1px solid #000000; font-style: inherit; font-family: inherit;"&gt;PAY2&lt;/TD&gt;&lt;TD style="padding-right: 4px; padding-left: 4px; border: 1px solid #000000; font-style: inherit; font-family: inherit;"&gt;1&lt;/TD&gt;&lt;TD style="padding-right: 4px; padding-left: 4px; border: 1px solid #000000; font-style: inherit; font-family: inherit;"&gt;-&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Mar 2014 16:56:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Straight-table-if-statements/m-p/607412#M1104645</guid>
      <dc:creator />
      <dc:date>2014-03-21T16:56:15Z</dc:date>
    </item>
    <item>
      <title>Re: Straight table if() statements</title>
      <link>https://community.qlik.com/t5/QlikView/Straight-table-if-statements/m-p/607413#M1104646</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I seem to be nearly there, using the aggr() function using the above field names I have the following:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;aggr(if(Boolean = 0 AND above(Boolean) = 1, 'Due', '-')FieldA, FieldB)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm going to mark this as correct, I have some issues with my data now but I think they are unique to my data so irrelevant to the community&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for everyone's help big or small&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Mar 2014 17:35:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Straight-table-if-statements/m-p/607413#M1104646</guid>
      <dc:creator />
      <dc:date>2014-03-21T17:35:41Z</dc:date>
    </item>
    <item>
      <title>Re: Straight table if() statements</title>
      <link>https://community.qlik.com/t5/QlikView/Straight-table-if-statements/m-p/607414#M1104647</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm not sure why you need the aggr(). If you make the dimensions FieldA &amp;amp; FieldB then:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=if(NOT Boolean AND Above(Boolean), 'Due', '')&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-ob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Mar 2014 17:51:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Straight-table-if-statements/m-p/607414#M1104647</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2014-03-21T17:51:12Z</dc:date>
    </item>
    <item>
      <title>Re: Straight table if() statements</title>
      <link>https://community.qlik.com/t5/QlikView/Straight-table-if-statements/m-p/607415#M1104648</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes of course, how stupid of me. While looking into aggr() I found above(), and just used it in what I already had. Rather than rethinking it!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Mar 2014 08:12:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Straight-table-if-statements/m-p/607415#M1104648</guid>
      <dc:creator />
      <dc:date>2014-03-24T08:12:40Z</dc:date>
    </item>
  </channel>
</rss>

