<?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 Making profit &amp; loss statement with Qlikview in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Making-profit-loss-statement-with-Qlikview/m-p/149661#M27815</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you for your answers. Unfortunately I'm still using Qlikview personal edition as we're still in the mids of the desicision process whether to take this software.&lt;/P&gt;&lt;P&gt;Could someone please post a quick recap on how the P&amp;amp;L is done in the example wernbrenk just posted?&lt;/P&gt;&lt;P&gt;-Sam&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 17 Jul 2009 19:34:56 GMT</pubDate>
    <dc:creator>samu</dc:creator>
    <dc:date>2009-07-17T19:34:56Z</dc:date>
    <item>
      <title>Making profit &amp; loss statement with Qlikview</title>
      <link>https://community.qlik.com/t5/QlikView/Making-profit-loss-statement-with-Qlikview/m-p/149657#M27811</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm making a profit &amp;amp; loss statement with qlikview and I'm wondering which would be the best approach. The problem I'm having is that I cant seem to find a proper way to create a table in Qlikview which would display all the information correctly. Ie.&lt;/P&gt;&lt;P&gt;Turnover (should display the total sum from all the accounts between XXXX and XXXX)&lt;/P&gt;&lt;P&gt;Other operating income&lt;/P&gt;&lt;P&gt;Materials &amp;amp; Services&lt;/P&gt;&lt;P&gt;Personnel expenses&lt;/P&gt;&lt;P&gt;etc...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have data from our SQL database and all the transactions from our general ledger. I can get everything out just fine on account level. However, I'm having problems with grouping data from certain accounts together. (ie. all the sales accounts under turnover, all the purchase accounts under materials &amp;amp; services, etc.).&lt;/P&gt;&lt;P&gt;Do I have to do this when loading data to Qlikview from our database by creating for example a new calculated field that has the information under which type of costs or income specifics accounts belong to, or can I do it in some other way? I've tried to create a chart with different dimensions/expressions in Qlikview which would contain all the information but I naturally can't get all the lines to align.&lt;/P&gt;&lt;P&gt;The only way I've managed to do it in Qlikview is by adding separate charts on top of each other that only display one line of information but it doesn't seem to be all that convenient solution.&lt;/P&gt;&lt;P&gt;Any tips on how I should get this done?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Sam&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Jul 2009 16:26:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Making-profit-loss-statement-with-Qlikview/m-p/149657#M27811</guid>
      <dc:creator>samu</dc:creator>
      <dc:date>2009-07-17T16:26:24Z</dc:date>
    </item>
    <item>
      <title>Making profit &amp; loss statement with Qlikview</title>
      <link>https://community.qlik.com/t5/QlikView/Making-profit-loss-statement-with-Qlikview/m-p/149658#M27812</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Samu&lt;/P&gt;&lt;P&gt;My applications are mainly accounting apps and I found two ways of doing in the script.&lt;/P&gt;&lt;P&gt;1. Hierarchy (see my example excel)&lt;/P&gt;&lt;P&gt;a. You make a hierarchy where you create groups called sales, purchase, materials &amp;amp; services etc and for each group, you add the General Ledger accounts under the group. For a hierarchy, you need to be very very careful of your parent id and your node id.&lt;/P&gt;&lt;P&gt;b. Make two lists - node id list and an adjacent node list.&lt;/P&gt;&lt;P&gt;c. In your script, create your hierarchy using the following code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;&lt;BR /&gt;&lt;I&gt;&lt;BR /&gt;ExpandedNodes:&lt;BR /&gt;&lt;/I&gt;&lt;B&gt;&lt;BR /&gt;HIERARCHY&lt;BR /&gt;&lt;/B&gt;&lt;BR /&gt;(NodeID,ParentID,NodeName)&lt;B&gt;&lt;BR /&gt;LOAD&lt;BR /&gt;&lt;/B&gt;&lt;BR /&gt;NodeID,&lt;BR /&gt;ParentID,&lt;BR /&gt;NodeName&lt;B&gt;&lt;BR /&gt;FROM&lt;BR /&gt;&lt;/B&gt;Source file.xls (biff, embedded labels, table is AdjacentNodes$)&lt;BR /&gt;;&lt;BR /&gt;&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;d. When you make your charts, choose the "parents" like sales or purchase and only the GL accounts under the parent will be chosen. You can then sum up as you will.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. Tagging&lt;/P&gt;&lt;P&gt;This is a much easier alternative if you only have 3-5 categories. For each GL entry,flag the account as either "sales", "purchases", "material &amp;amp; services"&lt;/P&gt;&lt;P&gt;1. Eg&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;&lt;BR /&gt;LOAD&lt;BR /&gt;GL_Account_number,&lt;BR /&gt;IF(GL_Account_number &amp;lt; '70000', 'Sales','Purchases') AS Type&lt;BR /&gt;&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;2. When you make a chart, you add your IF statement either in the dimension ark or in your expression itself&lt;/P&gt;&lt;P&gt;eg in a dimension&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;&lt;BR /&gt;IF(Type='Sales',GL_Account_number)&lt;BR /&gt;&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;You will then only choose the relevant dimension and the accounts having that dimension value.&lt;/P&gt;&lt;P&gt;Hope my solutions are useful. If anyone else in the forum has a more elegant way please let me know! I am always ready to learn!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Jul 2009 17:39:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Making-profit-loss-statement-with-Qlikview/m-p/149658#M27812</guid>
      <dc:creator />
      <dc:date>2009-07-17T17:39:51Z</dc:date>
    </item>
    <item>
      <title>Making profit &amp; loss statement with Qlikview</title>
      <link>https://community.qlik.com/t5/QlikView/Making-profit-loss-statement-with-Qlikview/m-p/149659#M27813</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello All,&lt;/P&gt;&lt;P&gt;Once, I have seen a web session that explains how to create a report P&amp;amp;L in QlikView.&lt;/P&gt;&lt;P&gt;Question to QlikTech: Can you make this web session available for all users?&lt;/P&gt;&lt;P&gt;Maybe someone can create a Wiki article?&lt;/P&gt;&lt;P&gt;Kind regards,&lt;/P&gt;&lt;P&gt;JTPro&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Jul 2009 18:34:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Making-profit-loss-statement-with-Qlikview/m-p/149659#M27813</guid>
      <dc:creator />
      <dc:date>2009-07-17T18:34:18Z</dc:date>
    </item>
    <item>
      <title>Making profit &amp; loss statement with Qlikview</title>
      <link>https://community.qlik.com/t5/QlikView/Making-profit-loss-statement-with-Qlikview/m-p/149660#M27814</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;An example I received from a friend.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Jul 2009 18:41:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Making-profit-loss-statement-with-Qlikview/m-p/149660#M27814</guid>
      <dc:creator />
      <dc:date>2009-07-17T18:41:27Z</dc:date>
    </item>
    <item>
      <title>Making profit &amp; loss statement with Qlikview</title>
      <link>https://community.qlik.com/t5/QlikView/Making-profit-loss-statement-with-Qlikview/m-p/149661#M27815</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you for your answers. Unfortunately I'm still using Qlikview personal edition as we're still in the mids of the desicision process whether to take this software.&lt;/P&gt;&lt;P&gt;Could someone please post a quick recap on how the P&amp;amp;L is done in the example wernbrenk just posted?&lt;/P&gt;&lt;P&gt;-Sam&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Jul 2009 19:34:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Making-profit-loss-statement-with-Qlikview/m-p/149661#M27815</guid>
      <dc:creator>samu</dc:creator>
      <dc:date>2009-07-17T19:34:56Z</dc:date>
    </item>
    <item>
      <title>Making profit &amp; loss statement with Qlikview</title>
      <link>https://community.qlik.com/t5/QlikView/Making-profit-loss-statement-with-Qlikview/m-p/149662#M27816</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;It's probably not the best example especially from a data perspective. You would do well to consinder the post by Jeanne Petersen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The theory is simple. Every transaction was done in a specific GL Account. Each GL Account belongs to a certain group, which might in turn belong to Profit or GP etc. You want to create an in memory representation of this&lt;/P&gt;&lt;P&gt;LineID , Drawer , Group , GL Account&lt;/P&gt;&lt;P&gt;1, Sales , ProdClass1, 11100023&lt;/P&gt;&lt;P&gt;2, COGS ,ProdClass1, 21100023&lt;/P&gt;&lt;P&gt;2, COGS , ProdClass2, 21100024&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TrxnID , GL Account (COGS) , Item , Amount&lt;/P&gt;&lt;P&gt;333 , 21100023 , A01 , 5000&lt;/P&gt;&lt;P&gt;334 , 21100024 , B07 , 8000&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When you create you P&amp;amp;L in the graphs you'll use set analysis to refer to the Drawer (COGS, Sales,etc). When the drawer is selected it means that every subtransaction will also be selected and the sum will be done on that. In the example the sum(Amount) where Drawer='COGS' will be 13 000. The LineID will be used to format you P&amp;amp;L. You could also use your GL Account's for that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;QV is an amazing tool. Just take it!&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, 17 Jul 2009 19:56:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Making-profit-loss-statement-with-Qlikview/m-p/149662#M27816</guid>
      <dc:creator />
      <dc:date>2009-07-17T19:56:23Z</dc:date>
    </item>
    <item>
      <title>Making profit &amp; loss statement with Qlikview</title>
      <link>https://community.qlik.com/t5/QlikView/Making-profit-loss-statement-with-Qlikview/m-p/149663#M27817</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Where do you guys typically get your P&amp;amp;L hierarchy/grouping from?&lt;/P&gt;&lt;P&gt;Do you just spend the time setting it up in a spreadsheet or do you pull it directly from your Accounting-system and possible FSRow-tables in the system?&lt;/P&gt;&lt;P&gt;I really don't like the spreadsheets cause after a while you tend to end up with so much maintenance, even though it might seem like an instant quickstart.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Jul 2009 21:23:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Making-profit-loss-statement-with-Qlikview/m-p/149663#M27817</guid>
      <dc:creator />
      <dc:date>2009-07-17T21:23:54Z</dc:date>
    </item>
    <item>
      <title>Making profit &amp; loss statement with Qlikview</title>
      <link>https://community.qlik.com/t5/QlikView/Making-profit-loss-statement-with-Qlikview/m-p/149664#M27818</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;It will depend on your accounting system. I'm a SAP Business One Consultant and I get it directly out of SAP. I also know of other system where it has to be created in an Excel sheet. It all depends on the system you're using.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Jul 2009 13:40:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Making-profit-loss-statement-with-Qlikview/m-p/149664#M27818</guid>
      <dc:creator />
      <dc:date>2009-07-20T13:40:32Z</dc:date>
    </item>
    <item>
      <title>Making profit &amp; loss statement with Qlikview</title>
      <link>https://community.qlik.com/t5/QlikView/Making-profit-loss-statement-with-Qlikview/m-p/149665#M27819</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok. Just being curious, how is the hierarchy maintained in SAP, through row definition tables or by "branding" each account (i.e. informal segments to the GLAccount besides the ordinary natural,company,division,costcenter....) ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Jul 2009 20:31:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Making-profit-loss-statement-with-Qlikview/m-p/149665#M27819</guid>
      <dc:creator />
      <dc:date>2009-07-20T20:31:53Z</dc:date>
    </item>
    <item>
      <title>Making profit &amp; loss statement with Qlikview</title>
      <link>https://community.qlik.com/t5/QlikView/Making-profit-loss-statement-with-Qlikview/m-p/149666#M27820</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;By using Parent-Child relationships. 8 drawers have been hardcoded (Assets,Liabilities,Capital &amp;amp; Reserves, Turnover, etc.) Each account has an account code and a parent acc code. Accounts can go up to 5 levels deep.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Jul 2009 20:53:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Making-profit-loss-statement-with-Qlikview/m-p/149666#M27820</guid>
      <dc:creator />
      <dc:date>2009-07-20T20:53:15Z</dc:date>
    </item>
    <item>
      <title>Making profit &amp; loss statement with Qlikview</title>
      <link>https://community.qlik.com/t5/QlikView/Making-profit-loss-statement-with-Qlikview/m-p/149667#M27821</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok. Thank you for your input!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Jul 2009 21:03:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Making-profit-loss-statement-with-Qlikview/m-p/149667#M27821</guid>
      <dc:creator />
      <dc:date>2009-07-20T21:03:57Z</dc:date>
    </item>
    <item>
      <title>Making profit &amp; loss statement with Qlikview</title>
      <link>https://community.qlik.com/t5/QlikView/Making-profit-loss-statement-with-Qlikview/m-p/149668#M27822</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for the advice! I'm going to try to achieve the results I'm looking for by using Jeanne's sample.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Br,&lt;/P&gt;&lt;P&gt;Sam&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Jul 2009 19:13:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Making-profit-loss-statement-with-Qlikview/m-p/149668#M27822</guid>
      <dc:creator>samu</dc:creator>
      <dc:date>2009-07-23T19:13:40Z</dc:date>
    </item>
    <item>
      <title>Making profit &amp; loss statement with Qlikview</title>
      <link>https://community.qlik.com/t5/QlikView/Making-profit-loss-statement-with-Qlikview/m-p/149669#M27823</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Any example in this case will be appreciated.. Thankyou:-)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Mar 2010 15:50:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Making-profit-loss-statement-with-Qlikview/m-p/149669#M27823</guid>
      <dc:creator />
      <dc:date>2010-03-15T15:50:06Z</dc:date>
    </item>
    <item>
      <title>Re: Making profit &amp; loss statement with Qlikview</title>
      <link>https://community.qlik.com/t5/QlikView/Making-profit-loss-statement-with-Qlikview/m-p/149670#M27824</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Jeanne,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I m still a newbie with QV. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I do alot of accounting stuff (ERP) and I m keen on using QV to handle P&amp;amp;L, Balance sheet, cash flow reports etc. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I ll appreciate any help you can give me to jump-start&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Femi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Dec 2012 12:39:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Making-profit-loss-statement-with-Qlikview/m-p/149670#M27824</guid>
      <dc:creator />
      <dc:date>2012-12-17T12:39:16Z</dc:date>
    </item>
    <item>
      <title>Re: Making profit &amp; loss statement with Qlikview</title>
      <link>https://community.qlik.com/t5/QlikView/Making-profit-loss-statement-with-Qlikview/m-p/149671#M27825</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi QlikView Guys,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;we have developed an QliView AddOn for solving that problem - for more details have a look at: &lt;A class="loading active_link" href="http://www.highcoordination.de/en/qlikview/qlikview-add-ons/structurebuilder/" title="http://www.highcoordination.de/en/qlikview/qlikview-add-ons/structurebuilder/"&gt;http://www.highcoordination.de/en/qlikview/qlikview-add-ons/structurebuilder/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please feel free to contact me for further questions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR&lt;/P&gt;&lt;P&gt;Peter Ellerau&lt;/P&gt;&lt;P&gt;HighCoordination GmbH&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Jul 2013 15:36:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Making-profit-loss-statement-with-Qlikview/m-p/149671#M27825</guid>
      <dc:creator>pelqlikview</dc:creator>
      <dc:date>2013-07-18T15:36:15Z</dc:date>
    </item>
    <item>
      <title>Re: Making profit &amp; loss statement with Qlikview</title>
      <link>https://community.qlik.com/t5/QlikView/Making-profit-loss-statement-with-Qlikview/m-p/149672#M27826</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for your email.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I ll be attending to it shortly&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;Femi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Jul 2013 17:51:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Making-profit-loss-statement-with-Qlikview/m-p/149672#M27826</guid>
      <dc:creator />
      <dc:date>2013-07-19T17:51:32Z</dc:date>
    </item>
    <item>
      <title>Re: Making profit &amp; loss statement with Qlikview</title>
      <link>https://community.qlik.com/t5/QlikView/Making-profit-loss-statement-with-Qlikview/m-p/1619077#M445627</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I did this in Sense. But it would also work in View&lt;/P&gt;&lt;P&gt;I used it to not only do a number of&amp;nbsp; P+Ls. but also a&amp;nbsp; cash flow&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/t5/Qlik-Sense-App-Development/QlikSense-Profit-and-Loss-Statement-without-an-extension/m-p/1512744" target="_blank"&gt;https://community.qlik.com/t5/Qlik-Sense-App-Development/QlikSense-Profit-and-Loss-Statement-without-an-extension/m-p/1512744&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Profit&amp;amp;Loss.JPG" style="width: 772px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/1065i7A0D13D77F4AC769/image-size/large?v=v2&amp;amp;px=999" role="button" title="Profit&amp;amp;Loss.JPG" alt="Profit&amp;amp;Loss.JPG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 01 Sep 2019 05:03:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Making-profit-loss-statement-with-Qlikview/m-p/1619077#M445627</guid>
      <dc:creator>robert99</dc:creator>
      <dc:date>2019-09-01T05:03:04Z</dc:date>
    </item>
  </channel>
</rss>

