<?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 Export with time stamp in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Export-with-time-stamp/m-p/259800#M98059</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello all, i have an export which works fine, but now i want to add a timestamp to it&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Original:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_text_macro jive_macro_code"&gt;&lt;P&gt;Sub Send_to_excel&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Path = "C:\Export\Export.xls"&lt;/P&gt;&lt;P&gt;set obj = ActiveDocument.GetSheetObject("CH12")&lt;/P&gt;&lt;P&gt;obj.ExportBiff Path&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;End Sub&lt;/P&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;New:&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_text_macro jive_macro_code"&gt;&lt;P&gt;Sub Send_to_excel&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Path = "C:\Export\Export.xls"&amp;amp;now()&amp;amp;".xls"&lt;/P&gt;&lt;P&gt;set obj = ActiveDocument.GetSheetObject("CH12")&lt;/P&gt;&lt;P&gt;obj.ExportBiff Path&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;End Sub&lt;/P&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But this is not working, can anyone help me out here?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 06 Jul 2011 10:03:18 GMT</pubDate>
    <dc:creator />
    <dc:date>2011-07-06T10:03:18Z</dc:date>
    <item>
      <title>Export with time stamp</title>
      <link>https://community.qlik.com/t5/QlikView/Export-with-time-stamp/m-p/259800#M98059</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello all, i have an export which works fine, but now i want to add a timestamp to it&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Original:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_text_macro jive_macro_code"&gt;&lt;P&gt;Sub Send_to_excel&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Path = "C:\Export\Export.xls"&lt;/P&gt;&lt;P&gt;set obj = ActiveDocument.GetSheetObject("CH12")&lt;/P&gt;&lt;P&gt;obj.ExportBiff Path&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;End Sub&lt;/P&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;New:&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_text_macro jive_macro_code"&gt;&lt;P&gt;Sub Send_to_excel&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Path = "C:\Export\Export.xls"&amp;amp;now()&amp;amp;".xls"&lt;/P&gt;&lt;P&gt;set obj = ActiveDocument.GetSheetObject("CH12")&lt;/P&gt;&lt;P&gt;obj.ExportBiff Path&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;End Sub&lt;/P&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But this is not working, can anyone help me out here?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Jul 2011 10:03:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-with-time-stamp/m-p/259800#M98059</guid>
      <dc:creator />
      <dc:date>2011-07-06T10:03:18Z</dc:date>
    </item>
    <item>
      <title>Re: Export with time stamp</title>
      <link>https://community.qlik.com/t5/QlikView/Export-with-time-stamp/m-p/259801#M98060</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This one is working:&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_text_macro jive_macro_code"&gt;&lt;P&gt;Sub Send_to_excel&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Path1 = "C:\Users\Kadenza\Projecten\Maxxium\SimulationModel\Export\"&lt;/P&gt;&lt;P&gt;Path2 = "Export_"&lt;/P&gt;&lt;P&gt;Path3 = Cstr(Date())&lt;/P&gt;&lt;P&gt;Path4 = ".xls"&lt;/P&gt;&lt;P&gt;Path = Path1&amp;amp;Path2&amp;amp;Path3&amp;amp;Path4&lt;/P&gt;&lt;P&gt;set obj = ActiveDocument.GetSheetObject("CH12")&lt;/P&gt;&lt;P&gt;obj.ExportBiff Path&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;End Sub&lt;/P&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But I have only the date and when&amp;nbsp; do this one it isn't working anymore;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_text_macro jive_macro_code"&gt;&lt;P&gt;Sub Send_to_excel&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Path1 = "C:\Users\Kadenza\Projecten\Maxxium\SimulationModel\Export\"&lt;/P&gt;&lt;P&gt;Path2 = "Export_"&lt;/P&gt;&lt;P&gt;Path3 = Cstr(Now())&lt;/P&gt;&lt;P&gt;Path4 = ".xls"&lt;/P&gt;&lt;P&gt;Path = Path1&amp;amp;Path2&amp;amp;Path3&amp;amp;Path4&lt;/P&gt;&lt;P&gt;set obj = ActiveDocument.GetSheetObject("CH12")&lt;/P&gt;&lt;P&gt;obj.ExportBiff Path&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;End Sub&lt;/P&gt;&lt;PRE __jive_macro_name="code" class="jive_text_macro jive_macro_code"&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;/P&gt;
&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Jul 2011 10:26:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-with-time-stamp/m-p/259801#M98060</guid>
      <dc:creator />
      <dc:date>2011-07-06T10:26:32Z</dc:date>
    </item>
    <item>
      <title>Re: Export with time stamp</title>
      <link>https://community.qlik.com/t5/QlikView/Export-with-time-stamp/m-p/259802#M98061</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;&amp;nbsp;&amp;nbsp; Instead of now() try today().&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, 06 Jul 2011 10:30:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-with-time-stamp/m-p/259802#M98061</guid>
      <dc:creator>kaushiknsolanki</dc:creator>
      <dc:date>2011-07-06T10:30:14Z</dc:date>
    </item>
    <item>
      <title>Re: Export with time stamp</title>
      <link>https://community.qlik.com/t5/QlikView/Export-with-time-stamp/m-p/259803#M98062</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Found it!&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_text_macro jive_macro_code"&gt;&lt;P&gt;Sub Send_to_excel&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Path1 = "C:\Users\Kadenza\Projecten\Maxxium\SimulationModel\Export\"&lt;/P&gt;&lt;P&gt;Path2 = "Export_"&lt;/P&gt;&lt;P&gt;vNow = Cstr(Now())&lt;/P&gt;&lt;P&gt;Path3 = Replace(vNow,":","")&lt;/P&gt;&lt;P&gt;Path4 = ".xls"&lt;/P&gt;&lt;P&gt;Path = Path1&amp;amp;Path2&amp;amp;Path3&amp;amp;Path4&lt;/P&gt;&lt;P&gt;set obj = ActiveDocument.GetSheetObject("CH12")&lt;/P&gt;&lt;P&gt;obj.ExportBiff Path&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;End Sub&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Jul 2011 10:32:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-with-time-stamp/m-p/259803#M98062</guid>
      <dc:creator />
      <dc:date>2011-07-06T10:32:11Z</dc:date>
    </item>
    <item>
      <title>Re: Export with time stamp</title>
      <link>https://community.qlik.com/t5/QlikView/Export-with-time-stamp/m-p/259804#M98063</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Today is not a function in VB script&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Jul 2011 10:33:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-with-time-stamp/m-p/259804#M98063</guid>
      <dc:creator />
      <dc:date>2011-07-06T10:33:55Z</dc:date>
    </item>
  </channel>
</rss>

