<?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: How to clear all date fields in one step in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/How-to-clear-all-date-fields-in-one-step/m-p/677160#M537734</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Not unless you only have 1 other non-date field in which case you could use 'clear other fields' but i'm sure that is not the case .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A macro call could do this easily and you can call the code from multiple places including an action/trigger but you would have to gauge... they are generally not considered a best practice.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 08 Oct 2014 02:19:04 GMT</pubDate>
    <dc:creator>JonnyPoole</dc:creator>
    <dc:date>2014-10-08T02:19:04Z</dc:date>
    <item>
      <title>How to clear all date fields in one step</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-clear-all-date-fields-in-one-step/m-p/677159#M537733</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have a tab that when I activate it I want to clear all the date related fields. I also have other triggers that I need to use for this same purpose. Each time I have to use 6-7 separate "Clear Field" triggers to clear all the date fields. Is there a way to do this in a more efficient manner, not having to clear every date field individually? (Note: I can't use the "Clear All Fields" selection because I don't want to clear non-date fields).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Oct 2014 22:14:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-clear-all-date-fields-in-one-step/m-p/677159#M537733</guid>
      <dc:creator>zagzebski</dc:creator>
      <dc:date>2014-10-07T22:14:14Z</dc:date>
    </item>
    <item>
      <title>Re: How to clear all date fields in one step</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-clear-all-date-fields-in-one-step/m-p/677160#M537734</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Not unless you only have 1 other non-date field in which case you could use 'clear other fields' but i'm sure that is not the case .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A macro call could do this easily and you can call the code from multiple places including an action/trigger but you would have to gauge... they are generally not considered a best practice.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Oct 2014 02:19:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-clear-all-date-fields-in-one-step/m-p/677160#M537734</guid>
      <dc:creator>JonnyPoole</dc:creator>
      <dc:date>2014-10-08T02:19:04Z</dc:date>
    </item>
    <item>
      <title>Re: How to clear all date fields in one step</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-clear-all-date-fields-in-one-step/m-p/677161#M537735</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 is possible with below macro&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SUB ClearDateFields&lt;/P&gt;&lt;P&gt;SET Doc = ActiveDocument&amp;nbsp; &lt;/P&gt;&lt;P&gt;Doc.Fields(DateFieldName1).Clear &lt;/P&gt;&lt;P&gt;Doc.Fields(DateFieldName2).Clear &lt;/P&gt;&lt;P&gt;Doc.Fields(DateFieldName3).Clear &lt;/P&gt;&lt;P&gt;'&lt;/P&gt;&lt;P&gt;'&lt;/P&gt;&lt;P&gt;'&lt;/P&gt;&lt;P&gt;Doc.Fields(DateFieldNameN).Clear &lt;/P&gt;&lt;P&gt;END SUB &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Call this macro in Sheet triggers..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note: As Jonathan said using Macros is not good practice, but in this scenario if you don't want to use &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;"Clear Field" triggers then macro is the option.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Jagan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Oct 2014 03:29:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-clear-all-date-fields-in-one-step/m-p/677161#M537735</guid>
      <dc:creator>jagan</dc:creator>
      <dc:date>2014-10-08T03:29:49Z</dc:date>
    </item>
    <item>
      <title>Re: How to clear all date fields in one step</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-clear-all-date-fields-in-one-step/m-p/677162#M537736</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Just try the k&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;eyboard shortcut 'Shift+Ctrl+D'&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Oct 2014 03:37:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-clear-all-date-fields-in-one-step/m-p/677162#M537736</guid>
      <dc:creator />
      <dc:date>2014-10-08T03:37:57Z</dc:date>
    </item>
  </channel>
</rss>

