<?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: Utilizing a variable in a string to query SQL Server in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Utilizing-a-variable-in-a-string-to-query-SQL-Server/m-p/1180221#M886549</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am trying to utilize a variable to complete a string to query on a where statement. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If I were utilizing SQL Server, the query would look like: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;declare @Variable as nvarchar(4) = '9999';&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Select *&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;FROM Test&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;WHERE samplecolumn = ('concat_' + @Variable)&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;The result would then be: &lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;concat_9999&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;However, in qlikview, if I declare the variable, vVariable, it is giving me an error. &lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;select *&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;from Test&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Where samplecolumn = ('concat_' $vVariable)&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;I need Qlikview to take the variable, 9999, and concat for the where statement look like this:&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG&gt;where samplecolumn = 'concat_9999'&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;The result I am currently getting is: &lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;where samplecolumn = 'concat_' 9999&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Which is incorrect syntax for SQL Server.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 10 Sep 2016 03:23:39 GMT</pubDate>
    <dc:creator>adley51788</dc:creator>
    <dc:date>2016-09-10T03:23:39Z</dc:date>
    <item>
      <title>Utilizing a variable in a string to query SQL Server</title>
      <link>https://community.qlik.com/t5/QlikView/Utilizing-a-variable-in-a-string-to-query-SQL-Server/m-p/1180218#M886546</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am looking to utilize an input parameter to query SQL Server. Having a little difficulty doing the following: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If I were utilizing SQL: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Select * &lt;/P&gt;&lt;P&gt;FROM Test &lt;/P&gt;&lt;P&gt;WHERE samplecolumn = ('concat_' + @Variable)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Trying in Qlikview: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select * &lt;/P&gt;&lt;P&gt;from Test &lt;/P&gt;&lt;P&gt;Where samplecolumn = ('concat_' $vVariable)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Getting an error because of the quotes being around the "Concat," but when trying to add around the variable, it is not considered. &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/Utilizing-a-variable-in-a-string-to-query-SQL-Server/m-p/1180218#M886546</guid>
      <dc:creator>adley51788</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: Utilizing a variable in a string to query SQL Server</title>
      <link>https://community.qlik.com/t5/QlikView/Utilizing-a-variable-in-a-string-to-query-SQL-Server/m-p/1180219#M886547</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Not sure what you want, can you give more details. If you trying in Qlikview then hope below code helps:&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;select *&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;from Test&lt;/P&gt;&lt;ADDRESS style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Where samplecolumn = '$(vVariable)'&lt;/ADDRESS&gt;&lt;ADDRESS style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/ADDRESS&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Sep 2016 23:47:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Utilizing-a-variable-in-a-string-to-query-SQL-Server/m-p/1180219#M886547</guid>
      <dc:creator>trdandamudi</dc:creator>
      <dc:date>2016-09-09T23:47:11Z</dc:date>
    </item>
    <item>
      <title>Re: Utilizing a variable in a string to query SQL Server</title>
      <link>https://community.qlik.com/t5/QlikView/Utilizing-a-variable-in-a-string-to-query-SQL-Server/m-p/1180220#M886548</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How about this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 28.6924px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Load *&lt;/P&gt;&lt;P style="font-size: 28.6924px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;from Test&lt;/P&gt;&lt;P style="font-size: 28.6924px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Where samplecolumn = ('concat_' &amp;amp; $(vVariable))&lt;/P&gt;&lt;P style="font-size: 28.6924px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 28.6924px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;What Ares trying to achieve&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 10 Sep 2016 01:32:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Utilizing-a-variable-in-a-string-to-query-SQL-Server/m-p/1180220#M886548</guid>
      <dc:creator>Anil_Babu_Samineni</dc:creator>
      <dc:date>2016-09-10T01:32:30Z</dc:date>
    </item>
    <item>
      <title>Re: Utilizing a variable in a string to query SQL Server</title>
      <link>https://community.qlik.com/t5/QlikView/Utilizing-a-variable-in-a-string-to-query-SQL-Server/m-p/1180221#M886549</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am trying to utilize a variable to complete a string to query on a where statement. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If I were utilizing SQL Server, the query would look like: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;declare @Variable as nvarchar(4) = '9999';&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Select *&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;FROM Test&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;WHERE samplecolumn = ('concat_' + @Variable)&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;The result would then be: &lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;concat_9999&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;However, in qlikview, if I declare the variable, vVariable, it is giving me an error. &lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;select *&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;from Test&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Where samplecolumn = ('concat_' $vVariable)&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;I need Qlikview to take the variable, 9999, and concat for the where statement look like this:&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG&gt;where samplecolumn = 'concat_9999'&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;The result I am currently getting is: &lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;where samplecolumn = 'concat_' 9999&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Which is incorrect syntax for SQL Server.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 10 Sep 2016 03:23:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Utilizing-a-variable-in-a-string-to-query-SQL-Server/m-p/1180221#M886549</guid>
      <dc:creator>adley51788</dc:creator>
      <dc:date>2016-09-10T03:23:39Z</dc:date>
    </item>
    <item>
      <title>Re: Utilizing a variable in a string to query SQL Server</title>
      <link>https://community.qlik.com/t5/QlikView/Utilizing-a-variable-in-a-string-to-query-SQL-Server/m-p/1180222#M886550</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Figured it out. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;where samplecolumn = 'Concat_$(vVariable)' &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you all for your assistance. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 10 Sep 2016 03:39:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Utilizing-a-variable-in-a-string-to-query-SQL-Server/m-p/1180222#M886550</guid>
      <dc:creator>adley51788</dc:creator>
      <dc:date>2016-09-10T03:39:31Z</dc:date>
    </item>
    <item>
      <title>Re: Utilizing a variable in a string to query SQL Server</title>
      <link>https://community.qlik.com/t5/QlikView/Utilizing-a-variable-in-a-string-to-query-SQL-Server/m-p/1180223#M886551</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Create&amp;nbsp; vVariable in the Variable Overview as 9999&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load *&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;From Test&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Where Samplecolumn='concat_' &amp;amp;'$(vVariable)';&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There are also couple of ways:&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 14pt;"&gt;Option I:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;LET &lt;SPAN style="font-size: 13.3333px;"&gt;vVariable&lt;/SPAN&gt;= 9999;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; *&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px; line-height: 1.5em;"&gt;Where Samplecolumn='concat_' &amp;amp;'$(vVariable)';&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;SQL SELECT&amp;nbsp; *&lt;/P&gt;&lt;P&gt;FROM mydb.dbo.reps;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 14pt;"&gt;Option II&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;LET &lt;SPAN style="font-size: 13.3333px;"&gt;vVariable&lt;/SPAN&gt;= 9999;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;LOAD&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; *&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;SQL SELECT&amp;nbsp; *&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;FROM mydb.dbo.reps&lt;/P&gt;&lt;P&gt;&lt;SPAN style="line-height: 1.5em; font-size: 13.3333px;"&gt;Where Samplecolumn='concat_' &amp;amp;'$(vVariable)';&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Replace "&lt;SPAN style="font-size: 13.3333px;"&gt;mydb.dbo.reps" with your database and table. Hope this helps...&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 10 Sep 2016 04:13:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Utilizing-a-variable-in-a-string-to-query-SQL-Server/m-p/1180223#M886551</guid>
      <dc:creator>trdandamudi</dc:creator>
      <dc:date>2016-09-10T04:13:15Z</dc:date>
    </item>
    <item>
      <title>Re: Utilizing a variable in a string to query SQL Server</title>
      <link>https://community.qlik.com/t5/QlikView/Utilizing-a-variable-in-a-string-to-query-SQL-Server/m-p/1180224#M886552</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You might need to include the variable inside of the quotes.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try it this way and see if it fixes the issue. It is working correctly on my machine:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT&amp;nbsp; *&lt;/P&gt;&lt;P&gt;FROM Test&lt;/P&gt;&lt;P&gt;Where Samplecolumn = 'concat_$(vVariable)';&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 10 Sep 2016 05:31:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Utilizing-a-variable-in-a-string-to-query-SQL-Server/m-p/1180224#M886552</guid>
      <dc:creator />
      <dc:date>2016-09-10T05:31:33Z</dc:date>
    </item>
    <item>
      <title>Re: Utilizing a variable in a string to query SQL Server</title>
      <link>https://community.qlik.com/t5/QlikView/Utilizing-a-variable-in-a-string-to-query-SQL-Server/m-p/1180225#M886553</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;sounds good, close this thread to put the flag Correct Answer.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 10 Sep 2016 18:04:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Utilizing-a-variable-in-a-string-to-query-SQL-Server/m-p/1180225#M886553</guid>
      <dc:creator>Anil_Babu_Samineni</dc:creator>
      <dc:date>2016-09-10T18:04:25Z</dc:date>
    </item>
  </channel>
</rss>

