<?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: Order Table in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Order-Table/m-p/1263433#M623429</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try formatting your dates as numbers in your script&amp;nbsp; num(DateField)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 18 Jan 2017 21:14:30 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2017-01-18T21:14:30Z</dc:date>
    <item>
      <title>Order Table</title>
      <link>https://community.qlik.com/t5/QlikView/Order-Table/m-p/1263428#M623424</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello everyone! i have an issue to create one table like that :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE border="1" class="jiveBorder" height="125" style="border: 1px solid #000000; width: 109px; height: 127px;" width="107"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TH style="text-align: center; background-color: #6690bc; color: #ffffff; padding: 2px;" valign="middle"&gt;&lt;STRONG&gt;Field 1&lt;/STRONG&gt;&lt;/TH&gt;&lt;TH style="text-align: center; background-color: #6690bc; color: #ffffff; padding: 2px;" valign="middle"&gt;&lt;STRONG&gt;Field 2&lt;/STRONG&gt;&lt;/TH&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;A&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;B&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;B&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;C&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;C&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;D&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;D&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to create a table, like the forward example, in the Script Editor.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #212121; font-size: 16px; font-family: arial, helvetica, sans-serif;"&gt;From field A, I want to create a field B equal to that shown in the figure. In field A I have the order "A - B - C - D" and I want to create a field B associated to field A with the Association "B - C - D" where A = B and B = C and C = D. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #212121; font-size: 16px; font-family: arial, helvetica, sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: arial, helvetica, sans-serif;"&gt;&lt;SPAN style="color: #212121; font-size: 16px;"&gt;Help me please.&lt;/SPAN&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Jan 2017 16:46:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Order-Table/m-p/1263428#M623424</guid>
      <dc:creator />
      <dc:date>2017-01-17T16:46:26Z</dc:date>
    </item>
    <item>
      <title>Re: Order Table</title>
      <link>https://community.qlik.com/t5/QlikView/Order-Table/m-p/1263429#M623425</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;Try to use this code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TMP_TABLE:&lt;/P&gt;&lt;P&gt;LOAD * INLINE [&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ID,FIELD1&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1, A&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2, B&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 3, C&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 4, D&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;NoConcatenate&lt;/P&gt;&lt;P&gt;Final:&lt;/P&gt;&lt;P&gt;Load&lt;/P&gt;&lt;P&gt;&amp;nbsp; ID,&lt;/P&gt;&lt;P&gt;&amp;nbsp; FIELD1,&lt;/P&gt;&lt;P&gt;&amp;nbsp; Peek('FIELD1') as FIELD2&lt;/P&gt;&lt;P&gt;Resident TMP_TABLE&lt;/P&gt;&lt;P&gt;order by ID desc;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Drop table TMP_TABLE;&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;Enrique&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Jan 2017 17:24:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Order-Table/m-p/1263429#M623425</guid>
      <dc:creator>eespiritu</dc:creator>
      <dc:date>2017-01-17T17:24:00Z</dc:date>
    </item>
    <item>
      <title>Re: Order Table</title>
      <link>https://community.qlik.com/t5/QlikView/Order-Table/m-p/1263430#M623426</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yhank you ! &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt; it work with numbers, but dont work with dates... do you know why ?! thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Jan 2017 19:16:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Order-Table/m-p/1263430#M623426</guid>
      <dc:creator />
      <dc:date>2017-01-18T19:16:08Z</dc:date>
    </item>
    <item>
      <title>Re: Order Table</title>
      <link>https://community.qlik.com/t5/QlikView/Order-Table/m-p/1263431#M623427</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do you have the example?, what are you trying to do with the dates? &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Jan 2017 19:51:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Order-Table/m-p/1263431#M623427</guid>
      <dc:creator>eespiritu</dc:creator>
      <dc:date>2017-01-18T19:51:01Z</dc:date>
    </item>
    <item>
      <title>Re: Order Table</title>
      <link>https://community.qlik.com/t5/QlikView/Order-Table/m-p/1263432#M623428</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;the same think! but when i put dates in the field, the dates dont show... probably is an formating issue... &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Jan 2017 21:09:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Order-Table/m-p/1263432#M623428</guid>
      <dc:creator />
      <dc:date>2017-01-18T21:09:55Z</dc:date>
    </item>
    <item>
      <title>Re: Order Table</title>
      <link>https://community.qlik.com/t5/QlikView/Order-Table/m-p/1263433#M623429</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try formatting your dates as numbers in your script&amp;nbsp; num(DateField)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Jan 2017 21:14:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Order-Table/m-p/1263433#M623429</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-01-18T21:14:30Z</dc:date>
    </item>
  </channel>
</rss>

