<?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 can I concatenate symbols with fields in select? in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/how-can-I-concatenate-symbols-with-fields-in-select/m-p/578812#M215235</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes indeed,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but can you share the script that shows this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What is the Syntax?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 14 Mar 2014 20:05:43 GMT</pubDate>
    <dc:creator>rustyfishbones</dc:creator>
    <dc:date>2014-03-14T20:05:43Z</dc:date>
    <item>
      <title>how can I concatenate symbols with fields in select?</title>
      <link>https://community.qlik.com/t5/QlikView/how-can-I-concatenate-symbols-with-fields-in-select/m-p/578806#M215229</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;how can I concatenate symbols with fields in select?&lt;/P&gt;&lt;P&gt;Like:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SQL SELECT &lt;/P&gt;&lt;P&gt;&amp;nbsp; num_cont &amp;amp; '/' &amp;amp; year_cont as contract,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Mar 2014 19:37:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/how-can-I-concatenate-symbols-with-fields-in-select/m-p/578806#M215229</guid>
      <dc:creator />
      <dc:date>2014-03-14T19:37:44Z</dc:date>
    </item>
    <item>
      <title>Re: how can I concatenate symbols with fields in select?</title>
      <link>https://community.qlik.com/t5/QlikView/how-can-I-concatenate-symbols-with-fields-in-select/m-p/578807#M215230</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can do this in Qlikview as a List box Expression&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Mar 2014 19:49:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/how-can-I-concatenate-symbols-with-fields-in-select/m-p/578807#M215230</guid>
      <dc:creator>rustyfishbones</dc:creator>
      <dc:date>2014-03-14T19:49:36Z</dc:date>
    </item>
    <item>
      <title>Re: how can I concatenate symbols with fields in select?</title>
      <link>https://community.qlik.com/t5/QlikView/how-can-I-concatenate-symbols-with-fields-in-select/m-p/578808#M215231</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Something like this should do it (I'm guessing your fields are numbers by the way they're named):&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SQL SELECT&lt;/P&gt;&lt;P&gt;cast(num_cont as varchar(50)) + '/' + cast(year_cont as varchar(50)) as contract,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Mar 2014 19:52:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/how-can-I-concatenate-symbols-with-fields-in-select/m-p/578808#M215231</guid>
      <dc:creator>Nicole-Smith</dc:creator>
      <dc:date>2014-03-14T19:52:19Z</dc:date>
    </item>
    <item>
      <title>Re: how can I concatenate symbols with fields in select?</title>
      <link>https://community.qlik.com/t5/QlikView/how-can-I-concatenate-symbols-with-fields-in-select/m-p/578809#M215232</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load *,&lt;/P&gt;&lt;P&gt;Field1 &amp;amp;'_'&amp;amp; Field2 as Key ;&lt;/P&gt;&lt;P&gt;SQL Select *&lt;/P&gt;&lt;P&gt;From DataBase:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;AJ&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Mar 2014 19:53:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/how-can-I-concatenate-symbols-with-fields-in-select/m-p/578809#M215232</guid>
      <dc:creator />
      <dc:date>2014-03-14T19:53:05Z</dc:date>
    </item>
    <item>
      <title>Re: how can I concatenate symbols with fields in select?</title>
      <link>https://community.qlik.com/t5/QlikView/how-can-I-concatenate-symbols-with-fields-in-select/m-p/578810#M215233</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;not sure this can be done in Qlikview??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do you have a sample of how this works Nicole&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Alan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Mar 2014 19:54:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/how-can-I-concatenate-symbols-with-fields-in-select/m-p/578810#M215233</guid>
      <dc:creator>rustyfishbones</dc:creator>
      <dc:date>2014-03-14T19:54:46Z</dc:date>
    </item>
    <item>
      <title>Re: how can I concatenate symbols with fields in select?</title>
      <link>https://community.qlik.com/t5/QlikView/how-can-I-concatenate-symbols-with-fields-in-select/m-p/578811#M215234</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have a sample but it's not like you can connect to my database...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Mar 2014 19:55:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/how-can-I-concatenate-symbols-with-fields-in-select/m-p/578811#M215234</guid>
      <dc:creator>Nicole-Smith</dc:creator>
      <dc:date>2014-03-14T19:55:59Z</dc:date>
    </item>
    <item>
      <title>Re: how can I concatenate symbols with fields in select?</title>
      <link>https://community.qlik.com/t5/QlikView/how-can-I-concatenate-symbols-with-fields-in-select/m-p/578812#M215235</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes indeed,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but can you share the script that shows this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What is the Syntax?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Mar 2014 20:05:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/how-can-I-concatenate-symbols-with-fields-in-select/m-p/578812#M215235</guid>
      <dc:creator>rustyfishbones</dc:creator>
      <dc:date>2014-03-14T20:05:43Z</dc:date>
    </item>
    <item>
      <title>Re: how can I concatenate symbols with fields in select?</title>
      <link>https://community.qlik.com/t5/QlikView/how-can-I-concatenate-symbols-with-fields-in-select/m-p/578813#M215236</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thx, this work.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Mar 2014 20:11:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/how-can-I-concatenate-symbols-with-fields-in-select/m-p/578813#M215236</guid>
      <dc:creator />
      <dc:date>2014-03-14T20:11:09Z</dc:date>
    </item>
    <item>
      <title>Re: how can I concatenate symbols with fields in select?</title>
      <link>https://community.qlik.com/t5/QlikView/how-can-I-concatenate-symbols-with-fields-in-select/m-p/578814#M215237</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;SQL SELECT&lt;/P&gt;&lt;P&gt;cast(Field1 as varchar(50)) + '/' + cast(Field2 as varchar(50)) as Test&lt;/P&gt;&lt;P&gt;FROM Table;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Mar 2014 20:11:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/how-can-I-concatenate-symbols-with-fields-in-select/m-p/578814#M215237</guid>
      <dc:creator>Nicole-Smith</dc:creator>
      <dc:date>2014-03-14T20:11:16Z</dc:date>
    </item>
    <item>
      <title>Re: how can I concatenate symbols with fields in select?</title>
      <link>https://community.qlik.com/t5/QlikView/how-can-I-concatenate-symbols-with-fields-in-select/m-p/578815#M215238</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;does not work for me,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can you take a snapshot of your script, here is what I have and it does not work for me&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="2014-03-14_2017.png" class="jive-image" src="https://community.qlik.com/legacyfs/online/55085_2014-03-14_2017.png" style="width: 620px; height: 413px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Mar 2014 20:18:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/how-can-I-concatenate-symbols-with-fields-in-select/m-p/578815#M215238</guid>
      <dc:creator>rustyfishbones</dc:creator>
      <dc:date>2014-03-14T20:18:27Z</dc:date>
    </item>
    <item>
      <title>Re: how can I concatenate symbols with fields in select?</title>
      <link>https://community.qlik.com/t5/QlikView/how-can-I-concatenate-symbols-with-fields-in-select/m-p/578816#M215239</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The two fields I'm using are numbers because I figured that's what the original post was about.&amp;nbsp; Looks like you're using strings...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My code is exactly what I posted plus the DB connect statement.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Mar 2014 20:22:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/how-can-I-concatenate-symbols-with-fields-in-select/m-p/578816#M215239</guid>
      <dc:creator>Nicole-Smith</dc:creator>
      <dc:date>2014-03-14T20:22:56Z</dc:date>
    </item>
  </channel>
</rss>

