<?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 Creating a Table with only Calculated Fields in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Creating-a-Table-with-only-Calculated-Fields/m-p/579943#M215528</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 want to create a table like below (in reality, a little more complex):&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE border="1" class="jiveBorder" style="border: 1px solid rgb(0, 0, 0); width: 100%;"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TH style="text-align: center; background-color: #6690bc; color: #ffffff; padding: 2px;" valign="middle"&gt;Today&lt;/TH&gt;&lt;TH style="text-align: center; background-color: #6690bc; color: #ffffff; padding: 2px;" valign="middle"&gt;Tomorrow&lt;/TH&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;31/03/2014&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;01/04/2014&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;my attempt was:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Temp:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; Today() as Today,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; Today()+1 as Tomorrow&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This doesn't appear to work, I get no table at all.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any advice welcome?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Dean&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 31 Mar 2014 10:24:44 GMT</pubDate>
    <dc:creator>mccook</dc:creator>
    <dc:date>2014-03-31T10:24:44Z</dc:date>
    <item>
      <title>Creating a Table with only Calculated Fields</title>
      <link>https://community.qlik.com/t5/QlikView/Creating-a-Table-with-only-Calculated-Fields/m-p/579943#M215528</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 want to create a table like below (in reality, a little more complex):&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE border="1" class="jiveBorder" style="border: 1px solid rgb(0, 0, 0); width: 100%;"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TH style="text-align: center; background-color: #6690bc; color: #ffffff; padding: 2px;" valign="middle"&gt;Today&lt;/TH&gt;&lt;TH style="text-align: center; background-color: #6690bc; color: #ffffff; padding: 2px;" valign="middle"&gt;Tomorrow&lt;/TH&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;31/03/2014&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;01/04/2014&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;my attempt was:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Temp:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; Today() as Today,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; Today()+1 as Tomorrow&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This doesn't appear to work, I get no table at all.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any advice welcome?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Dean&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 31 Mar 2014 10:24:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Creating-a-Table-with-only-Calculated-Fields/m-p/579943#M215528</guid>
      <dc:creator>mccook</dc:creator>
      <dc:date>2014-03-31T10:24:44Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a Table with only Calculated Fields</title>
      <link>https://community.qlik.com/t5/QlikView/Creating-a-Table-with-only-Calculated-Fields/m-p/579944#M215529</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Load&lt;/P&gt;&lt;P&gt;&amp;nbsp; Date(Today()) as Today,&lt;/P&gt;&lt;P&gt;&amp;nbsp; Date(Today()+1) as Tomorrow&lt;/P&gt;&lt;P&gt;AutoGenerate 1;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 31 Mar 2014 10:26:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Creating-a-Table-with-only-Calculated-Fields/m-p/579944#M215529</guid>
      <dc:creator>MK_QSL</dc:creator>
      <dc:date>2014-03-31T10:26:41Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a Table with only Calculated Fields</title>
      <link>https://community.qlik.com/t5/QlikView/Creating-a-Table-with-only-Calculated-Fields/m-p/579945#M215530</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 31 Mar 2014 10:29:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Creating-a-Table-with-only-Calculated-Fields/m-p/579945#M215530</guid>
      <dc:creator>mccook</dc:creator>
      <dc:date>2014-03-31T10:29:39Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a Table with only Calculated Fields</title>
      <link>https://community.qlik.com/t5/QlikView/Creating-a-Table-with-only-Calculated-Fields/m-p/579946#M215531</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Load like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Temp:&lt;/P&gt;&lt;P&gt;LOAD &lt;/P&gt;&lt;P&gt;&amp;nbsp; Today() as Today,&lt;/P&gt;&lt;P&gt;&amp;nbsp; Date(Today()+1) as Tomorrow&lt;/P&gt;&lt;P&gt;AutoGenerate 1;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 31 Mar 2014 10:31:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Creating-a-Table-with-only-Calculated-Fields/m-p/579946#M215531</guid>
      <dc:creator>its_anandrjs</dc:creator>
      <dc:date>2014-03-31T10:31:04Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a Table with only Calculated Fields</title>
      <link>https://community.qlik.com/t5/QlikView/Creating-a-Table-with-only-Calculated-Fields/m-p/579947#M215532</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;The way I would tackle this is to set this as variables inside the load script.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LET vToday = Today();&lt;/P&gt;&lt;P&gt;LET vTomorrow = Today() + 1;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The reason I would use variables is because this figure changes only once a day and is not based of your data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And then you use the variables inside the graph instead of the fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have attached a sample qvw.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;BR /&gt;Marius&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 31 Mar 2014 10:31:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Creating-a-Table-with-only-Calculated-Fields/m-p/579947#M215532</guid>
      <dc:creator />
      <dc:date>2014-03-31T10:31:32Z</dc:date>
    </item>
  </channel>
</rss>

