<?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: Comment or tag variable in load script in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Comment-or-tag-variable-in-load-script/m-p/788023#M663097</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 think if you want to achieve tagging or commenting variable in the script, you can store the variable in say Excel file. Effectively having any number of columns which will include comment and load them as either&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Variable_Table_Name:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;Variable&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; AS %Variable&lt;/P&gt;&lt;P&gt;Comments&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; AS %Comment&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;$(SourceFile)&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;P&gt;Or use Must_Include to load the file as part of your script&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 29 Jan 2015 17:33:52 GMT</pubDate>
    <dc:creator>Gabriel</dc:creator>
    <dc:date>2015-01-29T17:33:52Z</dc:date>
    <item>
      <title>Comment or tag variable in load script</title>
      <link>https://community.qlik.com/t5/QlikView/Comment-or-tag-variable-in-load-script/m-p/788019#M663090</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, Does anyone know if it is possible to Comment or tag variables created in the loadscript?&lt;/P&gt;&lt;P&gt;Comment or tag seem to only work on fields and tables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If I look at the xml of a qvw variables can have comment so it should be possible to create these in the load script when the variable is declared right?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm not talking about // or /* */&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for reading my post.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;//Linus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Jan 2015 10:14:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Comment-or-tag-variable-in-load-script/m-p/788019#M663090</guid>
      <dc:creator>linusblomberg</dc:creator>
      <dc:date>2015-01-29T10:14:55Z</dc:date>
    </item>
    <item>
      <title>Re: Comment or tag variable in load script</title>
      <link>https://community.qlik.com/t5/QlikView/Comment-or-tag-variable-in-load-script/m-p/788020#M663092</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I believe the only way would be to do it per macro, maybe in a loop through a table or another variable:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;here a simple example from apiguide.qvw:&lt;/P&gt;&lt;P&gt;set v = ActiveDocument.Variables("Variable1")&lt;BR /&gt;v.SetComment "The currency rate"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Jan 2015 14:11:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Comment-or-tag-variable-in-load-script/m-p/788020#M663092</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2015-01-29T14:11:31Z</dc:date>
    </item>
    <item>
      <title>Re: Comment or tag variable in load script</title>
      <link>https://community.qlik.com/t5/QlikView/Comment-or-tag-variable-in-load-script/m-p/788021#M663095</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hmm not really what I was hoping for. I have a variable repository which creates a number of qvs-files that I include in my apps. I'm hoping to create the comment in the qvs file so when I read the xml of all apps I can visualize what repository they are from. Maybe I can make it work in a macro. I will give it a try.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your help Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Jan 2015 15:54:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Comment-or-tag-variable-in-load-script/m-p/788021#M663095</guid>
      <dc:creator>linusblomberg</dc:creator>
      <dc:date>2015-01-29T15:54:34Z</dc:date>
    </item>
    <item>
      <title>Re: Comment or tag variable in load script</title>
      <link>https://community.qlik.com/t5/QlikView/Comment-or-tag-variable-in-load-script/m-p/788022#M663096</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Maybe you used your variable repository as independent table (maybe in a hidden sheet) as possibility to have access to these meta-data and by using from inputboxes you could put the comments into the variable-label and you could use a mouse-over.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;label:&lt;/P&gt;&lt;P&gt;= varName &amp;amp; chr(10) &amp;amp; chr(10) &amp;amp; only({&amp;lt; varNameField = {'varName'}&amp;gt;} varComment)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Jan 2015 16:36:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Comment-or-tag-variable-in-load-script/m-p/788022#M663096</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2015-01-29T16:36:45Z</dc:date>
    </item>
    <item>
      <title>Re: Comment or tag variable in load script</title>
      <link>https://community.qlik.com/t5/QlikView/Comment-or-tag-variable-in-load-script/m-p/788023#M663097</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 think if you want to achieve tagging or commenting variable in the script, you can store the variable in say Excel file. Effectively having any number of columns which will include comment and load them as either&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Variable_Table_Name:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;Variable&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; AS %Variable&lt;/P&gt;&lt;P&gt;Comments&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; AS %Comment&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;$(SourceFile)&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;P&gt;Or use Must_Include to load the file as part of your script&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Jan 2015 17:33:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Comment-or-tag-variable-in-load-script/m-p/788023#M663097</guid>
      <dc:creator>Gabriel</dc:creator>
      <dc:date>2015-01-29T17:33:52Z</dc:date>
    </item>
  </channel>
</rss>

