<?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: hi in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/hi/m-p/650956#M1081714</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try to create one Flag for Issue and Receipt.. If it is issue then subtract that transaction quantity..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 25 Jun 2014 08:56:35 GMT</pubDate>
    <dc:creator>selvakumarsr</dc:creator>
    <dc:date>2014-06-25T08:56:35Z</dc:date>
    <item>
      <title>hi</title>
      <link>https://community.qlik.com/t5/QlikView/hi/m-p/650955#M1081713</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i have a excel file which contain 2 field named Date and Transaction&lt;/P&gt;&lt;P&gt;now i want to show daily Opening balance and closing balance&lt;/P&gt;&lt;P&gt;Opening Balance= in first day it is Zero and from second day it will be Last day closing balance&lt;/P&gt;&lt;P&gt;Closing Balance= Today's opening+today's Transaction&lt;/P&gt;&lt;P&gt;plz suggest me what expression is used.&lt;/P&gt;&lt;P&gt;and data is..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Jun 2014 08:52:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/hi/m-p/650955#M1081713</guid>
      <dc:creator />
      <dc:date>2014-06-25T08:52:03Z</dc:date>
    </item>
    <item>
      <title>Re: hi</title>
      <link>https://community.qlik.com/t5/QlikView/hi/m-p/650956#M1081714</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try to create one Flag for Issue and Receipt.. If it is issue then subtract that transaction quantity..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Jun 2014 08:56:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/hi/m-p/650956#M1081714</guid>
      <dc:creator>selvakumarsr</dc:creator>
      <dc:date>2014-06-25T08:56:35Z</dc:date>
    </item>
    <item>
      <title>Re: hi</title>
      <link>https://community.qlik.com/t5/QlikView/hi/m-p/650957#M1081715</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Opening balance&lt;/P&gt;&lt;P&gt;Only({&amp;lt;date={&amp;lt;$(=today ()-1&amp;gt;}&amp;gt;}closingbal)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Jun 2014 08:59:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/hi/m-p/650957#M1081715</guid>
      <dc:creator />
      <dc:date>2014-06-25T08:59:56Z</dc:date>
    </item>
    <item>
      <title>Re: hi</title>
      <link>https://community.qlik.com/t5/QlikView/hi/m-p/650958#M1081716</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Cloding balance&lt;/P&gt;&lt;P&gt;Only({&amp;lt;date={&amp;lt;$(=today ()-1&amp;gt;}&amp;gt;}closingbal)+&lt;/P&gt;&lt;P&gt;Sum ({&amp;lt;date={$(=today ())}&amp;gt;}credits)-&lt;/P&gt;&lt;P&gt;Sum ({&amp;lt;date={$(=today ())}&amp;gt;}debits)-&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Jun 2014 09:03:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/hi/m-p/650958#M1081716</guid>
      <dc:creator />
      <dc:date>2014-06-25T09:03:52Z</dc:date>
    </item>
    <item>
      <title>Re: hi</title>
      <link>https://community.qlik.com/t5/QlikView/hi/m-p/650959#M1081717</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;one solution could be:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_text_macro jive_macro_code _jivemacro_uid_14036941963721146" jivemacro_uid="_14036941963721146" modifiedtitle="true"&gt;
&lt;P&gt;LOAD *,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Alt(Peek([Closing Balance]),0)+[Tran Amount] as [Closing Balance],&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Alt(Peek([Closing Balance]),0) as [Opening Balance]&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;FROM [&lt;/SPAN&gt;&lt;A _jive_internal="true" data-containerid="-1" data-containertype="-1" data-objectid="112559" data-objecttype="13" href="https://community.qlik.com/servlet/JiveServlet/download/2003-123202-555581-112559/Total Tran.xls"&gt;Total%20Tran.xls&lt;/A&gt;&lt;SPAN&gt;]&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;(biff, embedded labels, table is Sheet1$);&lt;/P&gt;


&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="61164" alt="QlikCommunity_Thread_123202_Pic1.JPG.jpg" class="jive-image" src="https://community.qlik.com/legacyfs/online/61164_QlikCommunity_Thread_123202_Pic1.JPG.jpg" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="61168" alt="QlikCommunity_Thread_123202_Pic2.JPG.jpg" class="jive-image" src="https://community.qlik.com/legacyfs/online/61168_QlikCommunity_Thread_123202_Pic2.JPG.jpg" style="width: 620px; height: 378px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(If there might be more than one row per day, you would have to include some aggregation (Sum) and grouping per day)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this helps&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>Wed, 25 Jun 2014 10:52:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/hi/m-p/650959#M1081717</guid>
      <dc:creator>MarcoWedel</dc:creator>
      <dc:date>2014-06-25T10:52:43Z</dc:date>
    </item>
    <item>
      <title>Re: Re: hi</title>
      <link>https://community.qlik.com/t5/QlikView/hi/m-p/650960#M1081718</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Hi,&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;one solution could be:&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-style: inherit; font-weight: inherit;"&gt;LOAD *,&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Alt(Peek([Closing Balance]),0)+[Tran Amount] as [Closing Balance],&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Alt(Peek([Closing Balance]),0) as [Opening Balance]&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit;"&gt;FROM [Total%20Tran.xls]&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit;"&gt;(biff, embedded labels, table is Sheet1$);&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;A _jive_internal="true" href="https://community.qlik.com/servlet/JiveServlet/showImage/2-555699-61164/QlikCommunity_Thread_123202_Pic1.JPG.jpg" style="font-weight: inherit; font-style: inherit; font-family: inherit; color: #3778c7;"&gt;&lt;IMG alt="QlikCommunity_Thread_123202_Pic1.JPG.jpg" class="jive-image jiveImage" height="295" src="https://community.qlik.com/legacyfs/online/61170_QlikCommunity_Thread_123202_Pic1.JPG.jpg" style="border: 0px; font-weight: inherit; font-style: inherit; font-family: inherit;" width="411" /&gt;&lt;/A&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;A _jive_internal="true" href="https://community.qlik.com/servlet/JiveServlet/showImage/2-555699-61168/QlikCommunity_Thread_123202_Pic2.JPG.jpg" style="font-weight: inherit; font-style: inherit; font-family: inherit; color: #3778c7;"&gt;&lt;IMG alt="QlikCommunity_Thread_123202_Pic2.JPG.jpg" class="jive-image jiveImage" height="391" src="https://community.qlik.com/legacyfs/online/61171_QlikCommunity_Thread_123202_Pic2.JPG.jpg" style="border: 0px; font-weight: inherit; font-style: inherit; font-family: inherit;" width="642" /&gt;&lt;/A&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;(If there might be more than one row per day, you would have to include some aggregation (Sum) and grouping per day)&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;hope this helps&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;regards&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Marco&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Jun 2014 11:04:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/hi/m-p/650960#M1081718</guid>
      <dc:creator>MarcoWedel</dc:creator>
      <dc:date>2014-06-25T11:04:36Z</dc:date>
    </item>
    <item>
      <title>Re: hi</title>
      <link>https://community.qlik.com/t5/QlikView/hi/m-p/650961#M1081719</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;edit: Test without URL due to moderation status&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;----------------------------------------------------------------------------&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Hi,&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;one solution could be:&lt;/P&gt;&lt;P style="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_text_macro jive_macro_code _jivemacro_uid_14036943850975030" jivemacro_uid="_14036943850975030"&gt;
&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;LOAD *, &lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Alt(Peek([Closing Balance]),0)+[Tran Amount] as [Closing Balance], &lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Alt(Peek([Closing Balance]),0) as [Opening Balance] &lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;FROM [Total Tran.xls] &lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;(biff, embedded labels, table is Sheet1$);&lt;/SPAN&gt;&lt;/P&gt;
&lt;/PRE&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;A href="https://community.qlik.com/legacyfs/online/61172_QlikCommunity_Thread_123202_Pic1.JPG.jpg"&gt;&lt;IMG alt="QlikCommunity_Thread_123202_Pic1.JPG.jpg" class="jive-image jiveImage" height="295" src="https://community.qlik.com/legacyfs/online/61172_QlikCommunity_Thread_123202_Pic1.JPG.jpg" style="border: 0px; font-weight: inherit; font-style: inherit; font-family: inherit;" width="411" /&gt;&lt;/A&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;A href="https://community.qlik.com/legacyfs/online/61173_QlikCommunity_Thread_123202_Pic2.JPG.jpg"&gt;&lt;IMG alt="QlikCommunity_Thread_123202_Pic2.JPG.jpg" class="jive-image jiveImage" height="391" src="https://community.qlik.com/legacyfs/online/61173_QlikCommunity_Thread_123202_Pic2.JPG.jpg" style="border: 0px; font-weight: inherit; font-style: inherit; font-family: inherit;" width="642" /&gt;&lt;/A&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;(If there might be more than one row per day, you would have to include some aggregation (Sum) and grouping per day)&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;hope this helps&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;regards&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Marco&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Jun 2014 11:06:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/hi/m-p/650961#M1081719</guid>
      <dc:creator>MarcoWedel</dc:creator>
      <dc:date>2014-06-25T11:06:33Z</dc:date>
    </item>
    <item>
      <title>Re: hi</title>
      <link>https://community.qlik.com/t5/QlikView/hi/m-p/650962#M1081720</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;please close this thread if there are no further questions.&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>Wed, 09 Jul 2014 12:21:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/hi/m-p/650962#M1081720</guid>
      <dc:creator>MarcoWedel</dc:creator>
      <dc:date>2014-07-09T12:21:11Z</dc:date>
    </item>
  </channel>
</rss>

