<?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: How do I use a script created field tag in an expression? in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/How-do-I-use-a-script-created-field-tag-in-an-expression/m-p/1544283#M62784</link>
    <description>&lt;P&gt;It is Qlik Sense. How could I load these tags into fields?&lt;/P&gt;&lt;P&gt;Thanks for the response.&lt;/P&gt;</description>
    <pubDate>Thu, 14 Feb 2019 12:25:24 GMT</pubDate>
    <dc:creator>julioarriaga</dc:creator>
    <dc:date>2019-02-14T12:25:24Z</dc:date>
    <item>
      <title>How do I use a script created field tag in an expression?</title>
      <link>https://community.qlik.com/t5/App-Development/How-do-I-use-a-script-created-field-tag-in-an-expression/m-p/1543849#M62782</link>
      <description>&lt;P&gt;Hi, I want to know if I can use a tag created as it is shown in the code in an expression.&lt;/P&gt;&lt;P&gt;Thanks and kind regards.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;Table1:
LOAD * INLINE [A,B
2,3
4,5];

TAG FIELD A With 'LA';&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 20 Dec 2021 21:38:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-do-I-use-a-script-created-field-tag-in-an-expression/m-p/1543849#M62782</guid>
      <dc:creator>julioarriaga</dc:creator>
      <dc:date>2021-12-20T21:38:40Z</dc:date>
    </item>
    <item>
      <title>Re: How do I use a script created field tag in an expression?</title>
      <link>https://community.qlik.com/t5/App-Development/How-do-I-use-a-script-created-field-tag-in-an-expression/m-p/1543913#M62783</link>
      <description>&lt;P&gt;As far as I know, this is not possible. There is no expression function that returns tags.&amp;nbsp;&lt;/P&gt;&lt;P&gt;If it fits your use case, you could possibly load tags into fields usable by your expression.&amp;nbsp; Is this Qlik Sense or QlikView?&lt;/P&gt;&lt;P&gt;-Rob&lt;BR /&gt;&lt;A href="http://masterssummit.com" target="_blank"&gt;http://masterssummit.com&lt;/A&gt;&lt;BR /&gt;&lt;A href="http://qlikviewcookbook.com" target="_blank"&gt;http://qlikviewcookbook.com&lt;/A&gt;&lt;BR /&gt;&lt;A href="http://www.easyqlik.com" target="_blank"&gt;http://www.easyqlik.com&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 13 Feb 2019 19:48:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-do-I-use-a-script-created-field-tag-in-an-expression/m-p/1543913#M62783</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2019-02-13T19:48:57Z</dc:date>
    </item>
    <item>
      <title>Re: How do I use a script created field tag in an expression?</title>
      <link>https://community.qlik.com/t5/App-Development/How-do-I-use-a-script-created-field-tag-in-an-expression/m-p/1544283#M62784</link>
      <description>&lt;P&gt;It is Qlik Sense. How could I load these tags into fields?&lt;/P&gt;&lt;P&gt;Thanks for the response.&lt;/P&gt;</description>
      <pubDate>Thu, 14 Feb 2019 12:25:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-do-I-use-a-script-created-field-tag-in-an-expression/m-p/1544283#M62784</guid>
      <dc:creator>julioarriaga</dc:creator>
      <dc:date>2019-02-14T12:25:24Z</dc:date>
    </item>
    <item>
      <title>Re: How do I use a script created field tag in an expression?</title>
      <link>https://community.qlik.com/t5/App-Development/How-do-I-use-a-script-created-field-tag-in-an-expression/m-p/1544515#M62785</link>
      <description>&lt;P&gt;You could load them by interrogating the tags from the app using the API.&amp;nbsp; That is probably going to limit you to the tags available in the last saved version of the app or when your collector runs.&amp;nbsp; If you don't have any idea about writing this yourself an immediate solution would be to borrow the QsAppMetadataConnector from &lt;A href="http://qlikviewcookbook.com/recipes/download-info/qs-document-analyzer/" target="_blank" rel="noopener"&gt;QS Document Analyzer.&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;1. Install QS Document Analyzer if not already installed.&amp;nbsp;&lt;/P&gt;&lt;P&gt;2. Add a QsAppMetadata connection to your app and configure it to point to your app.&amp;nbsp;&lt;/P&gt;&lt;P&gt;3. Use the standard select wizard to generate a load statement for the Fields table like this:&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;LIB CONNECT TO 'appmeta';&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;LOAD "FieldName",&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;Trim(SubField(FieldTags, ',')) as [Field Tag];&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;SQL SELECT "FieldName",&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;FieldTags&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;FROM "Fields";&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;The QS Document Analyzer installer does not support install on QS Enterprise, but if you need the connector on your server you only need to copy the&amp;nbsp;QsAppMetadataConnector folder from your desktop connectors to the Server connectors folder.&lt;/P&gt;&lt;P&gt;-Rob&lt;BR /&gt;&lt;A href="http://masterssummit.com" target="_blank"&gt;http://masterssummit.com&lt;/A&gt;&lt;BR /&gt;&lt;A href="http://qlikviewcookbook.com" target="_blank"&gt;http://qlikviewcookbook.com&lt;/A&gt;&lt;BR /&gt;&lt;A href="http://www.easyqlik.com" target="_blank"&gt;http://www.easyqlik.com&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 14 Feb 2019 17:14:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-do-I-use-a-script-created-field-tag-in-an-expression/m-p/1544515#M62785</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2019-02-14T17:14:24Z</dc:date>
    </item>
  </channel>
</rss>

