<?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: Concatenate variable with a string to obtain another variable in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Concatenate-variable-with-a-string-to-obtain-another-variable/m-p/1097864#M894902</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Using below works:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;LET new_table_name = &lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: inherit; color: #ff0000;"&gt;'New_table_' &amp;amp; '$(_param1)'&lt;/SPAN&gt;;&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;LET resident_table_name = &lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: inherit; color: #ff0000;"&gt;'Resident_table_' &amp;amp; '$(_param2)'&lt;/SPAN&gt;;&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;both enclosed with single quotes.&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Thanks for guide me in the right direction.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 31 Jul 2016 18:32:32 GMT</pubDate>
    <dc:creator />
    <dc:date>2016-07-31T18:32:32Z</dc:date>
    <item>
      <title>Concatenate variable with a string to obtain another variable</title>
      <link>https://community.qlik.com/t5/QlikView/Concatenate-variable-with-a-string-to-obtain-another-variable/m-p/1097862#M894900</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have a function which has 1 parameter:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SUB CalendarFromField(_param1, _param2)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What I am trying to do is concatenate _param with a string to obtain another string variable which I will use as a table name later:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;let new_table_name = ['New_table_' &amp;amp; '$(_param1)'];&lt;/P&gt;&lt;P&gt;let resident_table_name = &lt;SPAN style="font-size: 13.3333px;"&gt;['Resident_table_' &amp;amp; '$(_param2)'];&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;[$(new_table_name)]:&lt;/P&gt;&lt;P&gt;noconcatenate LOAD&lt;/P&gt;&lt;P&gt;&amp;nbsp; *&lt;/P&gt;&lt;P&gt;Resident [$(resident_table_name)]&lt;/P&gt;&lt;P&gt;Order By Date;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The problem is that new_table_name and resident_table_name variables are getting null. Any idea?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Concatenate-variable-with-a-string-to-obtain-another-variable/m-p/1097862#M894900</guid>
      <dc:creator />
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: Concatenate variable with a string to obtain another variable</title>
      <link>https://community.qlik.com/t5/QlikView/Concatenate-variable-with-a-string-to-obtain-another-variable/m-p/1097863#M894901</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How about trying this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG&gt;LET new_table_name = &lt;SPAN style="color: #ff0000;"&gt;'New_table_' &amp;amp; $(_param1)&lt;/SPAN&gt;;&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG&gt;LET resident_table_name = &lt;SPAN style="color: #ff0000;"&gt;'Resident_table_' &amp;amp; $(_param2)&lt;/SPAN&gt;;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 31 Jul 2016 17:52:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Concatenate-variable-with-a-string-to-obtain-another-variable/m-p/1097863#M894901</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-07-31T17:52:28Z</dc:date>
    </item>
    <item>
      <title>Re: Concatenate variable with a string to obtain another variable</title>
      <link>https://community.qlik.com/t5/QlikView/Concatenate-variable-with-a-string-to-obtain-another-variable/m-p/1097864#M894902</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Using below works:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;LET new_table_name = &lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: inherit; color: #ff0000;"&gt;'New_table_' &amp;amp; '$(_param1)'&lt;/SPAN&gt;;&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;LET resident_table_name = &lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: inherit; color: #ff0000;"&gt;'Resident_table_' &amp;amp; '$(_param2)'&lt;/SPAN&gt;;&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;both enclosed with single quotes.&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Thanks for guide me in the right direction.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 31 Jul 2016 18:32:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Concatenate-variable-with-a-string-to-obtain-another-variable/m-p/1097864#M894902</guid>
      <dc:creator />
      <dc:date>2016-07-31T18:32:32Z</dc:date>
    </item>
    <item>
      <title>Re: Concatenate variable with a string to obtain another variable</title>
      <link>https://community.qlik.com/t5/QlikView/Concatenate-variable-with-a-string-to-obtain-another-variable/m-p/1097865#M894903</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Awesome, as long as you get what you want &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;P&gt;For me, it has always been trial and error in the script with the variables. I never get to be sure what will and what won't work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best,&lt;/P&gt;&lt;P&gt;Sunny&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 31 Jul 2016 18:36:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Concatenate-variable-with-a-string-to-obtain-another-variable/m-p/1097865#M894903</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-07-31T18:36:39Z</dc:date>
    </item>
    <item>
      <title>Re: Concatenate variable with a string to obtain another variable</title>
      <link>https://community.qlik.com/t5/QlikView/Concatenate-variable-with-a-string-to-obtain-another-variable/m-p/1097866#M894904</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, I agree. Me too.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 31 Jul 2016 19:13:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Concatenate-variable-with-a-string-to-obtain-another-variable/m-p/1097866#M894904</guid>
      <dc:creator />
      <dc:date>2016-07-31T19:13:32Z</dc:date>
    </item>
    <item>
      <title>Re: Concatenate variable with a string to obtain another variable</title>
      <link>https://community.qlik.com/t5/QlikView/Concatenate-variable-with-a-string-to-obtain-another-variable/m-p/1515122#M894905</link>
      <description>Is there any way to change the color of the substring text using expressions ?</description>
      <pubDate>Sat, 01 Dec 2018 00:11:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Concatenate-variable-with-a-string-to-obtain-another-variable/m-p/1515122#M894905</guid>
      <dc:creator>vsabbise</dc:creator>
      <dc:date>2018-12-01T00:11:32Z</dc:date>
    </item>
  </channel>
</rss>

