<?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 Upper Case File name in script file Path in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Upper-Case-File-name-in-script-file-Path/m-p/1624777#M446040</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I have an issue with my filename. For example,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;&lt;U&gt;Data:&lt;/U&gt;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;Load&amp;nbsp; *&amp;nbsp; From Desktop/data.xlsx;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;So the above way of loading works fine.&lt;/P&gt;&lt;P&gt;But if my file name is changed to DATA. Is there any I can change my file name in the script so that i can capitalize the file name in the file path so that it can work.&lt;/P&gt;&lt;P&gt;May be something like this:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;FONT color="#FF0000"&gt;&lt;U&gt;Data:&lt;/U&gt;&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;FONT color="#FF0000"&gt;Load&amp;nbsp; *&amp;nbsp; From Upper(Desktop/data.xlsx);&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Please suggest.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;Vidya&lt;/P&gt;</description>
    <pubDate>Sat, 16 Nov 2024 20:04:11 GMT</pubDate>
    <dc:creator>poluvidyasagar</dc:creator>
    <dc:date>2024-11-16T20:04:11Z</dc:date>
    <item>
      <title>Upper Case File name in script file Path</title>
      <link>https://community.qlik.com/t5/QlikView/Upper-Case-File-name-in-script-file-Path/m-p/1624777#M446040</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I have an issue with my filename. For example,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;&lt;U&gt;Data:&lt;/U&gt;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;Load&amp;nbsp; *&amp;nbsp; From Desktop/data.xlsx;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;So the above way of loading works fine.&lt;/P&gt;&lt;P&gt;But if my file name is changed to DATA. Is there any I can change my file name in the script so that i can capitalize the file name in the file path so that it can work.&lt;/P&gt;&lt;P&gt;May be something like this:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;FONT color="#FF0000"&gt;&lt;U&gt;Data:&lt;/U&gt;&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;FONT color="#FF0000"&gt;Load&amp;nbsp; *&amp;nbsp; From Upper(Desktop/data.xlsx);&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Please suggest.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;Vidya&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 20:04:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Upper-Case-File-name-in-script-file-Path/m-p/1624777#M446040</guid>
      <dc:creator>poluvidyasagar</dc:creator>
      <dc:date>2024-11-16T20:04:11Z</dc:date>
    </item>
    <item>
      <title>Re: Upper Case File name in script file Path</title>
      <link>https://community.qlik.com/t5/QlikView/Upper-Case-File-name-in-script-file-Path/m-p/1624782#M446041</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I am not sure, but maybe this could work:&lt;/P&gt;&lt;P&gt;IF Len(Trim(FileTime('&lt;STRONG&gt;Desktop/data.xlsx&lt;/STRONG&gt;')))&amp;gt;0 then&lt;/P&gt;&lt;P&gt;Data:&lt;BR /&gt;LOAD *&lt;BR /&gt;FROM&lt;BR /&gt;[&lt;STRONG&gt;Desktop/data.xlsx&lt;/STRONG&gt;];&lt;/P&gt;&lt;P&gt;else&lt;/P&gt;&lt;P&gt;Data:&lt;BR /&gt;LOAD *&lt;BR /&gt;FROM&lt;BR /&gt;[&lt;STRONG&gt;Desktop/DATA.xlsx&lt;/STRONG&gt;];&lt;/P&gt;&lt;P&gt;END IF&lt;/P&gt;</description>
      <pubDate>Tue, 17 Sep 2019 15:56:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Upper-Case-File-name-in-script-file-Path/m-p/1624782#M446041</guid>
      <dc:creator>StarinieriG</dc:creator>
      <dc:date>2019-09-17T15:56:54Z</dc:date>
    </item>
    <item>
      <title>Re: Upper Case File name in script file Path</title>
      <link>https://community.qlik.com/t5/QlikView/Upper-Case-File-name-in-script-file-Path/m-p/1624806#M446043</link>
      <description>&lt;P&gt;I normally do not get issues with file paths in upper or lower case, but if you do get an issue from the file name you could try to "loop" through the single file using file list.&lt;/P&gt;&lt;P&gt;for each _file in filelist ('c:\desktop\data.xlsx')&lt;/P&gt;&lt;P&gt;Load ...&lt;/P&gt;&lt;P&gt;From $(_file) ;&lt;/P&gt;&lt;P&gt;Next&lt;/P&gt;</description>
      <pubDate>Tue, 17 Sep 2019 16:39:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Upper-Case-File-name-in-script-file-Path/m-p/1624806#M446043</guid>
      <dc:creator>Vegar</dc:creator>
      <dc:date>2019-09-17T16:39:14Z</dc:date>
    </item>
    <item>
      <title>Re: Upper Case File name in script file Path</title>
      <link>https://community.qlik.com/t5/QlikView/Upper-Case-File-name-in-script-file-Path/m-p/1625941#M446119</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I have checked loading files with lowercase and uppercase file names. Both works fine.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I think Qlikview is insensitive to filename. It will read find even if the file name changes from lower to upper.&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Vidya&lt;/P&gt;</description>
      <pubDate>Thu, 19 Sep 2019 19:05:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Upper-Case-File-name-in-script-file-Path/m-p/1625941#M446119</guid>
      <dc:creator>poluvidyasagar</dc:creator>
      <dc:date>2019-09-19T19:05:52Z</dc:date>
    </item>
  </channel>
</rss>

