<?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: Create New Column in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Create-New-Column/m-p/443503#M165320</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hmmm why not upload your qvw or a test version with the variable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If the value is a variable then only a single value will be selected and this essentially becomes your total.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anyway, if you upload a sample document I can have a look and see what we can come up with&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 09 May 2013 11:33:16 GMT</pubDate>
    <dc:creator />
    <dc:date>2013-05-09T11:33:16Z</dc:date>
    <item>
      <title>Create New Column</title>
      <link>https://community.qlik.com/t5/QlikView/Create-New-Column/m-p/443500#M165317</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Good morning,&lt;/P&gt;&lt;P&gt;I need to create a coulmn that is the total of another column, but I'm checking using TOP function and I always have only the firs row of the column.&lt;/P&gt;&lt;P&gt;I sent one example of my problem, maybe somebody could help me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 May 2013 10:42:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Create-New-Column/m-p/443500#M165317</guid>
      <dc:creator />
      <dc:date>2013-05-09T10:42:33Z</dc:date>
    </item>
    <item>
      <title>Re: Create New Column</title>
      <link>https://community.qlik.com/t5/QlikView/Create-New-Column/m-p/443501#M165318</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Let me know if this is what you were looking for mate&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 May 2013 10:48:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Create-New-Column/m-p/443501#M165318</guid>
      <dc:creator />
      <dc:date>2013-05-09T10:48:16Z</dc:date>
    </item>
    <item>
      <title>Re: Create New Column</title>
      <link>https://community.qlik.com/t5/QlikView/Create-New-Column/m-p/443502#M165319</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I obtain the same results. The problem I think is because the Column 'VALUE' is a Variable and when I include the variable in the expression, I don't have results.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 May 2013 10:57:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Create-New-Column/m-p/443502#M165319</guid>
      <dc:creator />
      <dc:date>2013-05-09T10:57:34Z</dc:date>
    </item>
    <item>
      <title>Re: Create New Column</title>
      <link>https://community.qlik.com/t5/QlikView/Create-New-Column/m-p/443503#M165320</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hmmm why not upload your qvw or a test version with the variable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If the value is a variable then only a single value will be selected and this essentially becomes your total.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anyway, if you upload a sample document I can have a look and see what we can come up with&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 May 2013 11:33:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Create-New-Column/m-p/443503#M165320</guid>
      <dc:creator />
      <dc:date>2013-05-09T11:33:16Z</dc:date>
    </item>
    <item>
      <title>Re: Create New Column</title>
      <link>https://community.qlik.com/t5/QlikView/Create-New-Column/m-p/443504#M165321</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;if you talking about chart but &lt;/P&gt;&lt;P&gt;the new create column gives you the total for every row&lt;/P&gt;&lt;P&gt;if you want the same column as previous one&amp;nbsp; then use sum(Column(1)) or what ever you want depending upon the expression column&lt;/P&gt;&lt;P&gt;but if you want total then sum(total Column(1)) it gives you all the total for every row&lt;/P&gt;&lt;P&gt;or in load script try this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Test:&lt;/P&gt;&lt;P&gt;LOAD * INLINE [&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; CATEGORY, VALUE&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1, 1000&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2, 2000&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 3, 1500&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 4, 1345&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;Q:&lt;/P&gt;&lt;P&gt;LOAD&amp;nbsp; sum( VALUE) as New&lt;/P&gt;&lt;P&gt;Resident Test ;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope it helps&lt;/P&gt;&lt;P&gt;See the attached file&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 May 2013 11:47:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Create-New-Column/m-p/443504#M165321</guid>
      <dc:creator>er_mohit</dc:creator>
      <dc:date>2013-05-09T11:47:45Z</dc:date>
    </item>
    <item>
      <title>Re: Create New Column</title>
      <link>https://community.qlik.com/t5/QlikView/Create-New-Column/m-p/443505#M165322</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Byron,&lt;/P&gt;&lt;P&gt;Attached I sent you the document. Many thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 May 2013 11:52:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Create-New-Column/m-p/443505#M165322</guid>
      <dc:creator />
      <dc:date>2013-05-09T11:52:27Z</dc:date>
    </item>
    <item>
      <title>Re: Create New Column</title>
      <link>https://community.qlik.com/t5/QlikView/Create-New-Column/m-p/443506#M165323</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey mate,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the problem is the variable because that variable does not exists (check variable overview)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now all you have to do is identify what measure it was suppose to sum and replace the variables inside that expression with the measure you want&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 May 2013 12:08:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Create-New-Column/m-p/443506#M165323</guid>
      <dc:creator />
      <dc:date>2013-05-09T12:08:06Z</dc:date>
    </item>
    <item>
      <title>Re: Create New Column</title>
      <link>https://community.qlik.com/t5/QlikView/Create-New-Column/m-p/443507#M165324</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;tab:&lt;/P&gt;&lt;P&gt;LOAD &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; CATEGORY, VALUE&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; from table1;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;output:&lt;/P&gt;&lt;P&gt;LOAD&amp;nbsp; sum( VALUE) as Total&lt;/P&gt;&lt;P&gt;Resident tab ;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 May 2013 12:12:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Create-New-Column/m-p/443507#M165324</guid>
      <dc:creator />
      <dc:date>2013-05-09T12:12:47Z</dc:date>
    </item>
    <item>
      <title>Re: Create New Column</title>
      <link>https://community.qlik.com/t5/QlikView/Create-New-Column/m-p/443508#M165325</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I need the total of the Column in each row of the next column.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 May 2013 12:29:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Create-New-Column/m-p/443508#M165325</guid>
      <dc:creator />
      <dc:date>2013-05-09T12:29:18Z</dc:date>
    </item>
    <item>
      <title>Re: Create New Column</title>
      <link>https://community.qlik.com/t5/QlikView/Create-New-Column/m-p/443509#M165326</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The problem is that VALUE column is not a field in the table, as you can see in my document&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 May 2013 12:46:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Create-New-Column/m-p/443509#M165326</guid>
      <dc:creator />
      <dc:date>2013-05-09T12:46:23Z</dc:date>
    </item>
  </channel>
</rss>

