<?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: Importing data that contains qlikview reserved word in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Importing-data-that-contains-qlikview-reserved-word/m-p/1375841#M822136</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I set it right above? What is wrong with that operation?&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;Zach&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 09 Aug 2017 18:05:50 GMT</pubDate>
    <dc:creator />
    <dc:date>2017-08-09T18:05:50Z</dc:date>
    <item>
      <title>Importing data that contains qlikview reserved word</title>
      <link>https://community.qlik.com/t5/QlikView/Importing-data-that-contains-qlikview-reserved-word/m-p/1375835#M822130</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am using the following script to import data from an excel table and then fill in the missing data. I keep getting an error when importing the field [Role] as it contains strings such as "Operations and Help desk" that Operations field cannot be found. I am pretty sure it is happening because QV is reading the "and" as a reserved word. Any help would be very appreciated. Thank you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Zach&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data:&lt;/P&gt;&lt;P&gt;LOAD [Account ID], &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; num(Date([Start Date], 'M/D/YYYY')) as StartDate, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; num(Date([End Date], 'M/D/YYYY')) as EndDate, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; num(Date([End Date])) - num(Date([Start Date])) + 1 as Days,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Role]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;&lt;C&gt;&lt;/C&gt;&lt;/P&gt;&lt;P&gt;(ooxml, embedded labels, table is Sheet1);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for i = 0 to NoOfRows('Data')-1&lt;/P&gt;&lt;P&gt;let vAct = Peek('Account ID', $(i), 'Data');&lt;/P&gt;&lt;P&gt;let vDays = Peek('Days', $(i), 'Data');&lt;/P&gt;&lt;P&gt;let vStart = Peek('StartDate', $(i), 'Data');&lt;/P&gt;&lt;P&gt;let vDays = Peek('Days', $(i), 'Data');&lt;/P&gt;&lt;P&gt;let vRole = Peek('Role', $(i), 'Data');&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DataDetail:&lt;/P&gt;&lt;P&gt;LOAD $(vAct) as [Account ID],&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; $(vStart) + RecNo() - 1 as PeriodDate,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Year($(vStart)) as Year,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Month($(vStart)) as Month,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; $(vRole) as [Role] &amp;lt;- PROBLEM OCCURS HERE&lt;/P&gt;&lt;P&gt;AutoGenerate $(vDays);&lt;/P&gt;&lt;P&gt;next&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/Importing-data-that-contains-qlikview-reserved-word/m-p/1375835#M822130</guid>
      <dc:creator />
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: Importing data that contains qlikview reserved word</title>
      <link>https://community.qlik.com/t5/QlikView/Importing-data-that-contains-qlikview-reserved-word/m-p/1375836#M822131</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try 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;DataDetail:&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;LOAD $(vAct) as [Account ID],&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; $(vStart) + RecNo() - 1 as PeriodDate,&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Year($(vStart)) as Year,&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Month($(vStart)) as Month,&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; '$(vRole)' as [Role] &amp;lt;- PROBLEM OCCURS HERE&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;AutoGenerate $(vDays);&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;next&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;Regards,&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Kaushik Solanki&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Aug 2017 17:52:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Importing-data-that-contains-qlikview-reserved-word/m-p/1375836#M822131</guid>
      <dc:creator>kaushiknsolanki</dc:creator>
      <dc:date>2017-08-09T17:52:20Z</dc:date>
    </item>
    <item>
      <title>Re: Importing data that contains qlikview reserved word</title>
      <link>https://community.qlik.com/t5/QlikView/Importing-data-that-contains-qlikview-reserved-word/m-p/1375837#M822132</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What if you do this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;DataDetail:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD $(vAct) as [Account ID],&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; $(vStart) + RecNo() - 1 as PeriodDate,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Year($(vStart)) as Year,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Month($(vStart)) as Month,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: #ff0000; font-size: 14pt;"&gt;'&lt;/SPAN&gt;$(vRole)&lt;SPAN style="color: #ff0000; font-size: 14pt;"&gt;'&lt;/SPAN&gt; as [Role]&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;AutoGenerate $(vDays);&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Aug 2017 17:54:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Importing-data-that-contains-qlikview-reserved-word/m-p/1375837#M822132</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2017-08-09T17:54:06Z</dc:date>
    </item>
    <item>
      <title>Re: Importing data that contains qlikview reserved word</title>
      <link>https://community.qlik.com/t5/QlikView/Importing-data-that-contains-qlikview-reserved-word/m-p/1375838#M822133</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I tried that but QV does not pick up the macro inside the single quotes. Also tried [$(vRole)]. Because it doesn't pick it up I get this error on Account ID.&lt;/P&gt;&lt;P&gt;Syntax error&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Script Error Log:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DataDetail:&lt;/P&gt;&lt;P&gt;LOAD&amp;nbsp; as &amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;[Account ID]&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; + RecNo() - 1 as PeriodDate,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Year() as Year,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Month() as Month,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; '' as [Role] &amp;lt;- DOES NOT PICK ANYTHING UP INSIDE QUOTES&lt;/P&gt;&lt;P&gt;AutoGenerate &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I wish there was a String() method similar to Date() and Num() .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for the reply,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Zach&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Aug 2017 17:59:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Importing-data-that-contains-qlikview-reserved-word/m-p/1375838#M822133</guid>
      <dc:creator />
      <dc:date>2017-08-09T17:59:57Z</dc:date>
    </item>
    <item>
      <title>Re: Importing data that contains qlikview reserved word</title>
      <link>https://community.qlik.com/t5/QlikView/Importing-data-that-contains-qlikview-reserved-word/m-p/1375839#M822134</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;I tried that but QV does not pick up the macro inside the single quotes. Also tried [$(vRole)]. Because it doesn't pick it up I get this error on Account ID.&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Syntax error&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;Script Error Log:&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;DataDetail:&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;LOAD&amp;nbsp; as &amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;[Account ID]&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;,&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; + RecNo() - 1 as PeriodDate,&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Year() as Year,&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Month() as Month,&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; '' as [Role] &amp;lt;- DOES NOT PICK ANYTHING UP INSIDE QUOTES&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;AutoGenerate&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;I wish there was a String() method similar to Date() and Num() .&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;Thanks for the reply,&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;Zach&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Aug 2017 18:00:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Importing-data-that-contains-qlikview-reserved-word/m-p/1375839#M822134</guid>
      <dc:creator />
      <dc:date>2017-08-09T18:00:13Z</dc:date>
    </item>
    <item>
      <title>Re: Importing data that contains qlikview reserved word</title>
      <link>https://community.qlik.com/t5/QlikView/Importing-data-that-contains-qlikview-reserved-word/m-p/1375840#M822135</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;It means your variable is not set properly.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Kaushik Solanki&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Aug 2017 18:02:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Importing-data-that-contains-qlikview-reserved-word/m-p/1375840#M822135</guid>
      <dc:creator>kaushiknsolanki</dc:creator>
      <dc:date>2017-08-09T18:02:43Z</dc:date>
    </item>
    <item>
      <title>Re: Importing data that contains qlikview reserved word</title>
      <link>https://community.qlik.com/t5/QlikView/Importing-data-that-contains-qlikview-reserved-word/m-p/1375841#M822136</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I set it right above? What is wrong with that operation?&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;Zach&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Aug 2017 18:05:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Importing-data-that-contains-qlikview-reserved-word/m-p/1375841#M822136</guid>
      <dc:creator />
      <dc:date>2017-08-09T18:05:50Z</dc:date>
    </item>
    <item>
      <title>Re: Importing data that contains qlikview reserved word</title>
      <link>https://community.qlik.com/t5/QlikView/Importing-data-that-contains-qlikview-reserved-word/m-p/1375842#M822137</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;The variable declaration seems to be right.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check if your Data table has got rows.&lt;/P&gt;&lt;P&gt;Also check if role is null in your data or not.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Kaushik Solanki&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Aug 2017 18:07:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Importing-data-that-contains-qlikview-reserved-word/m-p/1375842#M822137</guid>
      <dc:creator>kaushiknsolanki</dc:creator>
      <dc:date>2017-08-09T18:07:50Z</dc:date>
    </item>
    <item>
      <title>Re: Importing data that contains qlikview reserved word</title>
      <link>https://community.qlik.com/t5/QlikView/Importing-data-that-contains-qlikview-reserved-word/m-p/1375843#M822138</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What exactly are you trying to do here? There might be an easier way to do this instead of doing this in a loop and by looking at one cell at a time....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Aug 2017 18:08:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Importing-data-that-contains-qlikview-reserved-word/m-p/1375843#M822138</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2017-08-09T18:08:34Z</dc:date>
    </item>
    <item>
      <title>Re: Importing data that contains qlikview reserved word</title>
      <link>https://community.qlik.com/t5/QlikView/Importing-data-that-contains-qlikview-reserved-word/m-p/1375844#M822139</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am looking at different contracts (Account ID) that have different start and end dates. These contracts require a certain amount of different roles. I have a very similar script that reads an excel file of the requirements but I do not have this problem because it is reading a number instead of a role name. In QV the count function is executed on the field Role where role = 'Operations and Helpdesk', 'Back end Developer', etc. I need the data broken down from just start and end dates to daily data is I guess my goal here.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Zach&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Aug 2017 18:13:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Importing-data-that-contains-qlikview-reserved-word/m-p/1375844#M822139</guid>
      <dc:creator />
      <dc:date>2017-08-09T18:13:43Z</dc:date>
    </item>
    <item>
      <title>Re: Importing data that contains qlikview reserved word</title>
      <link>https://community.qlik.com/t5/QlikView/Importing-data-that-contains-qlikview-reserved-word/m-p/1375845#M822140</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It seems that all you are trying to do is to create all dates between start and end date? If that is what you want, may be try using&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;While Loop&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/qlik-blogpost/3274"&gt;Loops in the Script&lt;/A&gt;‌&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Or interval Match&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/qlik-blogpost/3037"&gt;IntervalMatch&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Aug 2017 18:17:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Importing-data-that-contains-qlikview-reserved-word/m-p/1375845#M822140</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2017-08-09T18:17:06Z</dc:date>
    </item>
    <item>
      <title>Re: Importing data that contains qlikview reserved word</title>
      <link>https://community.qlik.com/t5/QlikView/Importing-data-that-contains-qlikview-reserved-word/m-p/1375846#M822141</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you for your suggestions.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Aug 2017 18:43:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Importing-data-that-contains-qlikview-reserved-word/m-p/1375846#M822141</guid>
      <dc:creator />
      <dc:date>2017-08-09T18:43:13Z</dc:date>
    </item>
    <item>
      <title>Re: Importing data that contains qlikview reserved word</title>
      <link>https://community.qlik.com/t5/QlikView/Importing-data-that-contains-qlikview-reserved-word/m-p/1375847#M822142</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you for your help. There were a few rows 'cut' from the end of the excel sheet and not actually deleted. This caused the null problem error.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Aug 2017 18:44:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Importing-data-that-contains-qlikview-reserved-word/m-p/1375847#M822142</guid>
      <dc:creator />
      <dc:date>2017-08-09T18:44:16Z</dc:date>
    </item>
  </channel>
</rss>

