<?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: macro: export qvd with date-timestamp and insert 0 value for nulls inputfield in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/macro-export-qvd-with-date-timestamp-and-insert-0-value-for/m-p/762931#M271254</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Marcus the code you provided exported the file with today's date, how would I add the timestamp?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thx - Nick&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 09 Mar 2015 22:47:43 GMT</pubDate>
    <dc:creator>nickm</dc:creator>
    <dc:date>2015-03-09T22:47:43Z</dc:date>
    <item>
      <title>macro: export qvd with date-timestamp and insert 0 value for nulls inputfield</title>
      <link>https://community.qlik.com/t5/QlikView/macro-export-qvd-with-date-timestamp-and-insert-0-value-for/m-p/762928#M271251</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 use the below macro to export chart data to qvd and I need to include a date/timestamp so I do not overwrite the prior export. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SUB SaveBudgetQVDLocal&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; set obj = ActiveDocument.GetSheetObject("CH5026")&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; obj.ExportEx "C:\Users\nicholasm\Desktop\NEW_BUDGET_BUILD_2015_v4\new_budget_R12_analysis_build_2015\Exec_R12_Frcst_Reporting_v3.qvd", 4&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;END SUB&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any info on how to insert 0 for null values in an inputfield specific to a column in a table box via a macro would be greatly appreciated. I have tried many variations... no luck.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thx and have a great day - Nick M.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 08 Mar 2015 21:57:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/macro-export-qvd-with-date-timestamp-and-insert-0-value-for/m-p/762928#M271251</guid>
      <dc:creator>nickm</dc:creator>
      <dc:date>2015-03-08T21:57:04Z</dc:date>
    </item>
    <item>
      <title>Re: macro: export qvd with date-timestamp and insert 0 value for nulls inputfield</title>
      <link>https://community.qlik.com/t5/QlikView/macro-export-qvd-with-date-timestamp-and-insert-0-value-for/m-p/762929#M271252</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; Try it with a date, maybe with changed or additional formating from them or a timestamp:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SUB SaveBudgetQVDLocal&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;set obj = ActiveDocument.GetSheetObject("CH5026")&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;path = "C:\Users\nicholasm\Desktop\NEW_BUDGET_BUILD_2015_v4\new_budget_R12_analysis_build_2015\"&lt;/P&gt;&lt;P&gt;filebase = "Exec_R12_Frcst_Reporting_"&lt;/P&gt;&lt;P&gt;filedate = year(date) &amp;amp; "_" &amp;amp; month(date) &amp;amp; "_" &amp;amp; day(date)&lt;/P&gt;&lt;P&gt;fileext = ".qvd"&lt;/P&gt;&lt;P&gt;exportTyp = 4&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;obj.ExportEx path &amp;amp; filebase &amp;amp; filedate &amp;amp; fileext, exportTyp&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;END SUB&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A counter would be need more efforts. Either saving the counter separatly or reading and checking the folder for each file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Mar 2015 11:59:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/macro-export-qvd-with-date-timestamp-and-insert-0-value-for/m-p/762929#M271252</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2015-03-09T11:59:45Z</dc:date>
    </item>
    <item>
      <title>Re: macro: export qvd with date-timestamp and insert 0 value for nulls inputfield</title>
      <link>https://community.qlik.com/t5/QlikView/macro-export-qvd-with-date-timestamp-and-insert-0-value-for/m-p/762930#M271253</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Marcus,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for the input I will give it a try.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thx - Nick&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Mar 2015 14:26:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/macro-export-qvd-with-date-timestamp-and-insert-0-value-for/m-p/762930#M271253</guid>
      <dc:creator>nickm</dc:creator>
      <dc:date>2015-03-09T14:26:55Z</dc:date>
    </item>
    <item>
      <title>Re: macro: export qvd with date-timestamp and insert 0 value for nulls inputfield</title>
      <link>https://community.qlik.com/t5/QlikView/macro-export-qvd-with-date-timestamp-and-insert-0-value-for/m-p/762931#M271254</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Marcus the code you provided exported the file with today's date, how would I add the timestamp?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thx - Nick&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Mar 2015 22:47:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/macro-export-qvd-with-date-timestamp-and-insert-0-value-for/m-p/762931#M271254</guid>
      <dc:creator>nickm</dc:creator>
      <dc:date>2015-03-09T22:47:43Z</dc:date>
    </item>
    <item>
      <title>Re: macro: export qvd with date-timestamp and insert 0 value for nulls inputfield</title>
      <link>https://community.qlik.com/t5/QlikView/macro-export-qvd-with-date-timestamp-and-insert-0-value-for/m-p/762932#M271255</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Instead of date you could use time or now() and extend the file-name variable to hour(), minute() and/or second() - you could also try to use now () directly as file-name part, the return-format depend from the system-settings and will give me the string with a bad order-feature and invalid path-chars. But in your case it might be other, try it at first.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Mar 2015 06:57:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/macro-export-qvd-with-date-timestamp-and-insert-0-value-for/m-p/762932#M271255</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2015-03-10T06:57:44Z</dc:date>
    </item>
  </channel>
</rss>

