<?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 How to manually Insert Data into Table? in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/How-to-manually-Insert-Data-into-Table/m-p/1135360#M629350</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in the script editor, while loading I want to add lines to a (inlined) table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;At the moment I'm doing this via the concatenate command like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sub LogDb (pMessage)&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;&amp;nbsp; let vLogDate = timestamp(now(), 'DD.MM.YYYY hh:mm:ss.ff');&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; Concatenate(LogTable)&lt;/P&gt;&lt;P&gt;&amp;nbsp; Load * inline [&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; MessageDate, Message&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; $(vLogDate), $(pMessage)&lt;/P&gt;&lt;P&gt;&amp;nbsp; ];&lt;/P&gt;&lt;P&gt;end sub;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This seems pretty clunky. I wondered if there is something like an INSERT or APPEND command, but couldn't find any in the documentation nor any apropriate discussion here in the community.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So my question: Is this the way you do it, or is there a different (better) way to achieve that?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind regards&lt;/P&gt;&lt;P&gt;Sebastian&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edit: clearified scope&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 25 Jul 2016 08:12:14 GMT</pubDate>
    <dc:creator />
    <dc:date>2016-07-25T08:12:14Z</dc:date>
    <item>
      <title>How to manually Insert Data into Table?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-manually-Insert-Data-into-Table/m-p/1135360#M629350</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in the script editor, while loading I want to add lines to a (inlined) table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;At the moment I'm doing this via the concatenate command like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sub LogDb (pMessage)&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;&amp;nbsp; let vLogDate = timestamp(now(), 'DD.MM.YYYY hh:mm:ss.ff');&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; Concatenate(LogTable)&lt;/P&gt;&lt;P&gt;&amp;nbsp; Load * inline [&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; MessageDate, Message&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; $(vLogDate), $(pMessage)&lt;/P&gt;&lt;P&gt;&amp;nbsp; ];&lt;/P&gt;&lt;P&gt;end sub;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This seems pretty clunky. I wondered if there is something like an INSERT or APPEND command, but couldn't find any in the documentation nor any apropriate discussion here in the community.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So my question: Is this the way you do it, or is there a different (better) way to achieve that?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind regards&lt;/P&gt;&lt;P&gt;Sebastian&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edit: clearified scope&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Jul 2016 08:12:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-manually-Insert-Data-into-Table/m-p/1135360#M629350</guid>
      <dc:creator />
      <dc:date>2016-07-25T08:12:14Z</dc:date>
    </item>
    <item>
      <title>Re: How to manually Insert Data into Table?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-manually-Insert-Data-into-Table/m-p/1135361#M629351</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Do you need something like below in Insert menu of script editor?&lt;/P&gt;&lt;P&gt;Insert--&amp;gt;Load Statement--&amp;gt;Load Inline&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Jul 2016 09:03:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-manually-Insert-Data-into-Table/m-p/1135361#M629351</guid>
      <dc:creator>Digvijay_Singh</dc:creator>
      <dc:date>2016-07-25T09:03:25Z</dc:date>
    </item>
    <item>
      <title>Re: How to manually Insert Data into Table?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-manually-Insert-Data-into-Table/m-p/1135362#M629352</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;no, not really, I'm just asking, if there is a more viable way then creating a new inline table and concatenating it with the existing one. Something like a "INSERT" command in SQL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your answer though.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;cheers&lt;/P&gt;&lt;P&gt;sebastian&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Jul 2016 10:01:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-manually-Insert-Data-into-Table/m-p/1135362#M629352</guid>
      <dc:creator />
      <dc:date>2016-07-25T10:01:48Z</dc:date>
    </item>
    <item>
      <title>Re: How to manually Insert Data into Table?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-manually-Insert-Data-into-Table/m-p/1135363#M629353</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;don't think so AFAIK for the data created in script. Let us hear from other experts though!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Jul 2016 10:16:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-manually-Insert-Data-into-Table/m-p/1135363#M629353</guid>
      <dc:creator>Digvijay_Singh</dc:creator>
      <dc:date>2016-07-25T10:16:44Z</dc:date>
    </item>
  </channel>
</rss>

