<?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: Setting multiple field values in a variable in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Setting-multiple-field-values-in-a-variable/m-p/68303#M457983</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Do you mind sharing sample data and the output required..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 25 Jun 2018 20:38:46 GMT</pubDate>
    <dc:creator>neelamsaroha157</dc:creator>
    <dc:date>2018-06-25T20:38:46Z</dc:date>
    <item>
      <title>Setting multiple field values in a variable</title>
      <link>https://community.qlik.com/t5/QlikView/Setting-multiple-field-values-in-a-variable/m-p/68298#M457978</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am trying to write a previousQuarter variable that is comprised of the following:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_macro_code jive_text_macro _jivemacro_uid_15296722931918010" jivemacro_uid="_15296722931918010"&gt;
&lt;P&gt;= if&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; (&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; GetFieldSelections([Quarter]) = 'Q1',&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Deposit Year] = (GetFieldSelections([Deposit Year]) - 1) and (Quarter = 'Q4'),&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Quarter] = 'Q' &amp;amp; (Right(Quarter, 1) - 1)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; )&lt;/P&gt;

&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need this variable to use in pulling the previous quarter balance, and the if() here needs to be able to handle when Q1 is selected and so there needs to be a comparison to the previous year's Q4 balance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think that maybe "[...] = x" is not appropriate syntax; so is there a proper way to write this, or am I going about this the wrong way?&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;Edit: Added sample .qvw.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Tyler Tollin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Jun 2018 13:02:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Setting-multiple-field-values-in-a-variable/m-p/68298#M457978</guid>
      <dc:creator>ttollin11</dc:creator>
      <dc:date>2018-06-22T13:02:41Z</dc:date>
    </item>
    <item>
      <title>Re: Setting multiple field values in a variable</title>
      <link>https://community.qlik.com/t5/QlikView/Setting-multiple-field-values-in-a-variable/m-p/68299#M457979</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;may be you can make use of quarterstart and quarterend functions&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For current - &lt;/P&gt;&lt;P&gt;Sum({&amp;lt;Date={"&amp;gt;=$(=QuarterStart(max(Date)))&amp;lt;=$(=QuarterEnd(max(Date)))"}&amp;gt;}YourField)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;For previous- &lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Sum({&amp;lt;Date={"&amp;gt;=$(=QuarterStart(max(Date), -1))&amp;lt;=$(=QuarterEnd(max(Date), -1))"}&amp;gt;}YourField)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Jun 2018 13:29:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Setting-multiple-field-values-in-a-variable/m-p/68299#M457979</guid>
      <dc:creator>neelamsaroha157</dc:creator>
      <dc:date>2018-06-22T13:29:56Z</dc:date>
    </item>
    <item>
      <title>Re: Setting multiple field values in a variable</title>
      <link>https://community.qlik.com/t5/QlikView/Setting-multiple-field-values-in-a-variable/m-p/68300#M457980</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Probably the best way is to Quarter date field in the script from your normal date field: Num(QuarterStart(MyDate))) as YearQuarter. Once you have that field you can create variables for the currently selected and the previous quarter:&lt;/P&gt;&lt;P&gt;vCurrentQuarter: =max(YearQuarter)&lt;/P&gt;&lt;P&gt;vPreviousQuarter: =num(QuarterStart(&lt;SPAN style="font-size: 13.3333px;"&gt;max(YearQuarter),-1))&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;You can then use the variables in set analysis expressions:&lt;/P&gt;&lt;P&gt;sum({&amp;lt;YearQuarter={$(vCurrentQuarter)}&amp;gt;}Amount)&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;sum({&amp;lt;&lt;STRONG&gt;Year, Quarter&lt;/STRONG&gt;, YearQuarter={$(vPreviousQuarter)}&amp;gt;}Amount)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the set analysis expression for the previous quarter we add &lt;STRONG style="font-size: 13.3333px;"&gt;Year, Quarter&lt;/STRONG&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;, to make the expression ignore your selections in the Year and Quarter dimensions so only a selection in the field YearQuarter is applied to this expression so the data is calculated over the correct YearQuarter value, i.e. the previous one with the value in the vPreviousQuarter variable.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Jun 2018 13:32:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Setting-multiple-field-values-in-a-variable/m-p/68300#M457980</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2018-06-22T13:32:29Z</dc:date>
    </item>
    <item>
      <title>Re: Setting multiple field values in a variable</title>
      <link>https://community.qlik.com/t5/QlikView/Setting-multiple-field-values-in-a-variable/m-p/68301#M457981</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for the suggestion, Gysbert. I'm going to try and refactor to get this suggestion to work. If it does, I'll come back and mark as answered.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Jun 2018 14:06:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Setting-multiple-field-values-in-a-variable/m-p/68301#M457981</guid>
      <dc:creator>ttollin11</dc:creator>
      <dc:date>2018-06-22T14:06:48Z</dc:date>
    </item>
    <item>
      <title>Re: Setting multiple field values in a variable</title>
      <link>https://community.qlik.com/t5/QlikView/Setting-multiple-field-values-in-a-variable/m-p/68302#M457982</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So I haven't had any luck with this, but I've made enough changes to your suggestion to reasonably think that I might have made some mistakes. Here's what I've done so far:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;I've incorporated the master calendar here:&lt;/LI&gt;&lt;/OL&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_macro_code jive_text_macro _jivemacro_uid_15299580297119619" jivemacro_uid="_15299580297119619" modifiedtitle="true"&gt;
&lt;P&gt;MasterCalendar:&lt;/P&gt;
&lt;P&gt;Load&lt;/P&gt;
&lt;P&gt;TempDate&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; As [Record Date],&lt;/P&gt;
&lt;P&gt;//Week(TempDate)&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; As Week,&lt;/P&gt;
&lt;P&gt;Year(TempDate)&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; As [Deposit Year],&lt;/P&gt;
&lt;P&gt;Month(TempDate)&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; As [Deposit Month],&lt;/P&gt;
&lt;P&gt;//Day(TempDate)&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; As Day,&lt;/P&gt;
&lt;P&gt;'Q' &amp;amp; ceil(month(TempDate) / 3) As [Deposit Quarter],&lt;/P&gt;
&lt;P&gt;Date( QuarterStart(TempDate) )&amp;nbsp; As [Deposit Quarter Start],&lt;/P&gt;
&lt;P&gt;MonthStart(Date( QuarterEnd( Date( QuarterStart(TempDate)-1)) )) As [Deposit Previous Quarter End];&lt;/P&gt;
&lt;P&gt;//Week(weekstart(TempDate)) &amp;amp; '-' &amp;amp; WeekYear(TempDate) As WeekYear,&lt;/P&gt;
&lt;P&gt;//WeekDay(TempDate)&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; As WeekDay;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;//=== Generate a temp table of dates ===&lt;/P&gt;
&lt;P&gt;LOAD&lt;/P&gt;
&lt;P&gt;date(mindate + IterNo()) AS TempDate,&lt;/P&gt;
&lt;P&gt;maxdate // Used in InYearToDate() above, but not kept&lt;/P&gt;
&lt;P&gt;WHILE mindate + IterNo() &amp;lt;= maxdate;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;//=== Get min/max dates from Field ===/&lt;/P&gt;
&lt;P&gt;LOAD&lt;/P&gt;
&lt;P&gt;min(FieldValue('Record Date', recno()))-1 as mindate,&lt;/P&gt;
&lt;P&gt;max(FieldValue('Record Date', recno())) as maxdate&lt;/P&gt;
&lt;P&gt;AUTOGENERATE FieldValueCount('Record Date');&lt;/P&gt;
&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2. Created the following formula to test:&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_macro_code jive_text_macro _jivemacro_uid_15299580995597822" jivemacro_uid="_15299580995597822"&gt;
&lt;P&gt;=sum&lt;/P&gt;
&lt;P&gt;(&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&amp;lt; [Deposit Month], [Deposit Year], [Record Date] = {$(=$(previousQtrMonth))} &amp;gt;}&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Current Balance Amount]&lt;/P&gt;
&lt;P&gt;)&lt;/P&gt;
&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Which uses the following variable:&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_macro_code _jivemacro_uid_15299581739989864 jive_text_macro" jivemacro_uid="_15299581739989864"&gt;
&lt;P&gt;previousQtrMonth = [Deposit Previous Quarter End]&lt;/P&gt;
&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Still no dice; the balance formula is returning 0. I've tried all kinds of combinations of ' ' versus " ", variables in the set expression or just the field name, etc. I'm out of ideas.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Jun 2018 20:25:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Setting-multiple-field-values-in-a-variable/m-p/68302#M457982</guid>
      <dc:creator>ttollin11</dc:creator>
      <dc:date>2018-06-25T20:25:35Z</dc:date>
    </item>
    <item>
      <title>Re: Setting multiple field values in a variable</title>
      <link>https://community.qlik.com/t5/QlikView/Setting-multiple-field-values-in-a-variable/m-p/68303#M457983</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Do you mind sharing sample data and the output required..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Jun 2018 20:38:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Setting-multiple-field-values-in-a-variable/m-p/68303#M457983</guid>
      <dc:creator>neelamsaroha157</dc:creator>
      <dc:date>2018-06-25T20:38:46Z</dc:date>
    </item>
    <item>
      <title>Re: Setting multiple field values in a variable</title>
      <link>https://community.qlik.com/t5/QlikView/Setting-multiple-field-values-in-a-variable/m-p/68304#M457984</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Added in original post, thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Jun 2018 12:57:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Setting-multiple-field-values-in-a-variable/m-p/68304#M457984</guid>
      <dc:creator>ttollin11</dc:creator>
      <dc:date>2018-06-26T12:57:45Z</dc:date>
    </item>
    <item>
      <title>Re: Setting multiple field values in a variable</title>
      <link>https://community.qlik.com/t5/QlikView/Setting-multiple-field-values-in-a-variable/m-p/68305#M457985</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;=num&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;(Sum({&amp;lt;[Record Date] = P([Previous Quarter End]), Quarter, Year&amp;gt;}[Current Balance Amount]),&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;MoneyFormat&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;)&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Jun 2018 13:14:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Setting-multiple-field-values-in-a-variable/m-p/68305#M457985</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2018-06-26T13:14:12Z</dc:date>
    </item>
    <item>
      <title>Re: Setting multiple field values in a variable</title>
      <link>https://community.qlik.com/t5/QlikView/Setting-multiple-field-values-in-a-variable/m-p/68306#M457986</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Nailed it like always, Sunny. Marked as correct.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I can't find anything on Documentation about P(); would you mind explaining what it does and when to use it?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Jun 2018 13:26:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Setting-multiple-field-values-in-a-variable/m-p/68306#M457986</guid>
      <dc:creator>ttollin11</dc:creator>
      <dc:date>2018-06-26T13:26:51Z</dc:date>
    </item>
    <item>
      <title>Re: Setting multiple field values in a variable</title>
      <link>https://community.qlik.com/t5/QlikView/Setting-multiple-field-values-in-a-variable/m-p/68307#M457987</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Look here&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/thread/87839"&gt;Indirect Set Analysis for P() and E()&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Jun 2018 13:28:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Setting-multiple-field-values-in-a-variable/m-p/68307#M457987</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2018-06-26T13:28:56Z</dc:date>
    </item>
    <item>
      <title>Re: Setting multiple field values in a variable</title>
      <link>https://community.qlik.com/t5/QlikView/Setting-multiple-field-values-in-a-variable/m-p/68308#M457988</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Sunny. Is it normal for this not to work at the record level?&lt;/P&gt;&lt;P&gt;When I use &lt;/P&gt;&lt;P&gt;=sum({&amp;lt;[Record Date] = P([Previous Quarter End]), [Deposit Month], [Deposit Quarter], [Deposit Year]&amp;gt;} [Current Balance Amount])&lt;/P&gt;&lt;P&gt;for column Previous Qtr Bal, the below results. That's the right value for that date, but it should be in a single record. I've tried using variables, but that returns 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE bgcolor="#ffffff" border="1" cellpadding="2" cellspacing="0" style="font-size: 9pt;"&gt;&lt;TBODY&gt;&lt;TR bgcolor="#f5f5f5"&gt;&lt;TH nowrap="nowrap"&gt;&lt;SPAN style="color: #363636;"&gt;&lt;STRONG&gt;%DepositFact_PK&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt; &lt;/STRONG&gt;&lt;/TH&gt;&lt;TH nowrap="nowrap"&gt;&lt;SPAN style="color: #363636;"&gt;&lt;STRONG&gt;=[Record Date]&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt; &lt;/STRONG&gt;&lt;/TH&gt;&lt;TH nowrap="nowrap"&gt;&lt;SPAN style="color: #363636;"&gt;&lt;STRONG&gt;=RecordYYYYMM&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt; &lt;/STRONG&gt;&lt;/TH&gt;&lt;TH nowrap="nowrap"&gt;&lt;SPAN style="color: #363636;"&gt;&lt;STRONG&gt;=[Current Balance Amount]&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt; &lt;/STRONG&gt;&lt;/TH&gt;&lt;TH nowrap="nowrap"&gt;&lt;SPAN style="color: #363636;"&gt;&lt;STRONG&gt;=[Previous Quarter End]&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt; &lt;/STRONG&gt;&lt;/TH&gt;&lt;TH nowrap="nowrap"&gt;&lt;SPAN style="color: #363636;"&gt;&lt;STRONG&gt;Previous Qtr Bal&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt; &lt;/STRONG&gt;&lt;/TH&gt;&lt;/TR&gt;&lt;TR bgcolor="#f5f5f5"&gt;&lt;TD bgcolor="#f5f5f5"&gt;&lt;/TD&gt;&lt;TD bgcolor="#f5f5f5"&gt;&lt;STRONG&gt;3/1/2018 &lt;/STRONG&gt;&lt;/TD&gt;&lt;TD bgcolor="#f5f5f5"&gt;&lt;STRONG&gt;201803 &lt;/STRONG&gt;&lt;/TD&gt;&lt;TD bgcolor="#f5f5f5"&gt;&lt;STRONG&gt;157.7900 &lt;/STRONG&gt;&lt;/TD&gt;&lt;TD bgcolor="#f5f5f5"&gt;&lt;STRONG&gt;12/1/2017 &lt;/STRONG&gt;&lt;/TD&gt;&lt;TD bgcolor="#f5f5f5"&gt;&lt;STRONG&gt;303.7000 &lt;/STRONG&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR bgcolor="#ffffff"&gt;&lt;TD bgcolor="#ffffff"&gt;&lt;SPAN style="color: #363636;"&gt;201712|50546&lt;/SPAN&gt;&lt;/TD&gt;&lt;TD bgcolor="#ffffff"&gt;&lt;/TD&gt;&lt;TD bgcolor="#ffffff"&gt;&lt;/TD&gt;&lt;TD bgcolor="#ffffff"&gt;&lt;/TD&gt;&lt;TD bgcolor="#ffffff"&gt;&lt;/TD&gt;&lt;TD bgcolor="#ffffff"&gt;&lt;SPAN style="color: #363636;"&gt;303.7000&lt;/SPAN&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR bgcolor="#ffffff"&gt;&lt;TD bgcolor="#ffffff"&gt;&lt;SPAN style="color: #363636;"&gt;201803|50546&lt;/SPAN&gt;&lt;/TD&gt;&lt;TD bgcolor="#ffffff"&gt;&lt;SPAN style="color: #363636;"&gt;3/1/2018&lt;/SPAN&gt;&lt;/TD&gt;&lt;TD bgcolor="#ffffff"&gt;&lt;SPAN style="color: #363636;"&gt;201803&lt;/SPAN&gt;&lt;/TD&gt;&lt;TD bgcolor="#ffffff"&gt;&lt;SPAN style="color: #363636;"&gt;157.7900&lt;/SPAN&gt;&lt;/TD&gt;&lt;TD bgcolor="#ffffff"&gt;&lt;SPAN style="color: #363636;"&gt;12/1/2017&lt;/SPAN&gt;&lt;/TD&gt;&lt;TD bgcolor="#ffffff"&gt;&lt;SPAN style="color: #363636;"&gt;0.0000&lt;/SPAN&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Jun 2018 20:36:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Setting-multiple-field-values-in-a-variable/m-p/68308#M457988</guid>
      <dc:creator>ttollin11</dc:creator>
      <dc:date>2018-06-26T20:36:23Z</dc:date>
    </item>
    <item>
      <title>Re: Setting multiple field values in a variable</title>
      <link>https://community.qlik.com/t5/QlikView/Setting-multiple-field-values-in-a-variable/m-p/68309#M457989</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Since date is part of the dimension, you will need to use &lt;A href="https://community.qlik.com/docs/DOC-14624"&gt;Inter-Record Functions&lt;/A&gt; here... may be with Above()&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; font-size: 13px;"&gt;&lt;STRONG&gt;=Above(Sum({&amp;lt;[Record Date] = P([Previous Quarter End]), [Deposit Month], [Deposit Quarter], [Deposit Year]&amp;gt;} [Current Balance Amount]))&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Jun 2018 01:23:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Setting-multiple-field-values-in-a-variable/m-p/68309#M457989</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2018-06-27T01:23:34Z</dc:date>
    </item>
  </channel>
</rss>

