<?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 replace multiple field values with null. in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/how-to-replace-multiple-field-values-with-null/m-p/42884#M606014</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;yes i want to replace every inappropriate date with null but only by year not with month and day.&lt;/P&gt;&lt;P&gt;like i write 9000 in the query and it is replaced with null. i just want to enter the year in the script because there are too many different months and days in every inappropriate year. &lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 16 May 2018 19:07:58 GMT</pubDate>
    <dc:creator>shahfaisalq</dc:creator>
    <dc:date>2018-05-16T19:07:58Z</dc:date>
    <item>
      <title>how to replace multiple field values with null.</title>
      <link>https://community.qlik.com/t5/QlikView/how-to-replace-multiple-field-values-with-null/m-p/42882#M606012</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi every one,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i am at the beginner level of Qlik scripting. Need a little assistance.&lt;/P&gt;&lt;P&gt;down below is the script i used to load the data from the database.&lt;/P&gt;&lt;P&gt;[org]:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt; [ID_FRS_Org] AS [ID_FRS_Link],&lt;/P&gt;&lt;P&gt; [Name_Org],&lt;/P&gt;&lt;P&gt; [Type_Org],&lt;/P&gt;&lt;P&gt; [Type_Org_Affiliation],&lt;/P&gt;&lt;P&gt; [Email_Org],&lt;/P&gt;&lt;P&gt; if(year(Date([Date_Start_Org]))=9000,Null(),Date([Date_Start_Org] )) AS [Date_Start_Org],&lt;/P&gt;&lt;P&gt; Date([Date_End_Org] ) AS [Date_End_Org],&lt;/P&gt;&lt;P&gt; [Aspect_Org],&lt;/P&gt;&lt;P&gt; [System_Org],&lt;/P&gt;&lt;P&gt; [ID_System_Org],&lt;/P&gt;&lt;P&gt; [Phone_Org],&lt;/P&gt;&lt;P&gt; [ID_State_Org];&lt;/P&gt;&lt;P&gt;SQL SELECT `ID_FRS_Org`,&lt;/P&gt;&lt;P&gt; `Name_Org`,&lt;/P&gt;&lt;P&gt; `Type_Org`,&lt;/P&gt;&lt;P&gt; `Type_Org_Affiliation`,&lt;/P&gt;&lt;P&gt; `Email_Org`,&lt;/P&gt;&lt;P&gt; `Date_Start_Org`,&lt;/P&gt;&lt;P&gt; `Date_End_Org`,&lt;/P&gt;&lt;P&gt; `Aspect_Org`,&lt;/P&gt;&lt;P&gt; `System_Org`,&lt;/P&gt;&lt;P&gt; `ID_System_Org`,&lt;/P&gt;&lt;P&gt; `Phone_Org`,&lt;/P&gt;&lt;P&gt; `ID_State_Org`&lt;/P&gt;&lt;P&gt;FROM `site_1.0_2018_05_03`.`org`;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now i want to replace some specific date with null. i use&amp;nbsp; if(year(Date([Date_Start_Org]))=9000,Null(),Date([Date_Start_Org] )) AS [Date_Start_Org] this statement to replace 9000/12/31. Now i want to replace multiple dates with null instead of one. &lt;/P&gt;&lt;P&gt;what i have to do.&lt;/P&gt;&lt;P&gt;Kindly help me out here.&lt;/P&gt;&lt;P&gt;i will really appreciate your help and efforts.&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;ShahFaisal Qayyum&amp;nbsp; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 May 2018 14:04:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/how-to-replace-multiple-field-values-with-null/m-p/42882#M606012</guid>
      <dc:creator>shahfaisalq</dc:creator>
      <dc:date>2018-05-16T14:04:37Z</dc:date>
    </item>
    <item>
      <title>Re: how to replace multiple field values with null.</title>
      <link>https://community.qlik.com/t5/QlikView/how-to-replace-multiple-field-values-with-null/m-p/42883#M606013</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, I suppose, you have a table with the dates you want to set null() like that:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;STRONG style="color: blue; font-size: 10.0pt; font-family: 'Courier New';"&gt;SET&lt;/STRONG&gt; &lt;STRONG&gt;&lt;EM style="color: gray; font-size: 10.0pt; font-family: 'Courier New';"&gt;DateFormat&lt;/EM&gt;&lt;/STRONG&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black;"&gt;='YYYY/MM/DD';&lt;BR /&gt; &lt;BR /&gt; TEMP:&lt;BR /&gt; &lt;/SPAN&gt;&lt;STRONG style="color: blue; font-size: 10.0pt; font-family: 'Courier New';"&gt;LOAD&lt;/STRONG&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black;"&gt; * &lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: blue;"&gt;INLINE&lt;/SPAN&gt; &lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: maroon;"&gt;[&lt;BR /&gt; SETNULLDATES&lt;BR /&gt; 2015/12/31&lt;BR /&gt; 2016/12/31&lt;BR /&gt; 2017/12/31&lt;BR /&gt; ]&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black;"&gt;;&lt;BR /&gt; &lt;BR /&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="text-decoration: underline;"&gt;then you could use your script:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;[org]:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;[ID_FRS_Org] AS [ID_FRS_Link],&lt;/P&gt;&lt;P&gt;[Name_Org],&lt;/P&gt;&lt;P&gt;[Type_Org],&lt;/P&gt;&lt;P&gt;[Type_Org_Affiliation],&lt;/P&gt;&lt;P&gt;[Email_Org],&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff0000; font-family: arial, helvetica, sans-serif;"&gt;if(Exists('&lt;SPAN style="font-size: 10pt;"&gt;SETNULLDATES',&lt;SPAN style="color: #ff0000; font-size: 10pt; font-family: arial, helvetica, sans-serif;"&gt;[Date_Start_Org]),&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff0000; font-size: 10pt; font-family: arial, helvetica, sans-serif;"&gt;&lt;SPAN style="color: #ff0000; font-size: 10pt; font-family: arial, helvetica, sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;null(),&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff0000; font-size: 10pt; font-family: arial, helvetica, sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Date_Start_Org]&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff0000; font-family: arial, helvetica, sans-serif;"&gt;&lt;SPAN style="font-size: 10pt;"&gt;)&lt;/SPAN&gt; AS [Date_Start_Org],&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Date([Date_End_Org] ) AS [Date_End_Org],&lt;/P&gt;&lt;P&gt;[Aspect_Org],&lt;/P&gt;&lt;P&gt;[System_Org],&lt;/P&gt;&lt;P&gt;[ID_System_Org],&lt;/P&gt;&lt;P&gt;[Phone_Org],&lt;/P&gt;&lt;P&gt;[ID_State_Org];&lt;/P&gt;&lt;P&gt;SQL SELECT `ID_FRS_Org`,&lt;/P&gt;&lt;P&gt;`Name_Org`,&lt;/P&gt;&lt;P&gt;`Type_Org`,&lt;/P&gt;&lt;P&gt;`Type_Org_Affiliation`,&lt;/P&gt;&lt;P&gt;`Email_Org`,&lt;/P&gt;&lt;P&gt;`Date_Start_Org`,&lt;/P&gt;&lt;P&gt;`Date_End_Org`,&lt;/P&gt;&lt;P&gt;`Aspect_Org`,&lt;/P&gt;&lt;P&gt;`System_Org`,&lt;/P&gt;&lt;P&gt;`ID_System_Org`,&lt;/P&gt;&lt;P&gt;`Phone_Org`,&lt;/P&gt;&lt;P&gt;`ID_State_Org`&lt;/P&gt;&lt;P&gt;FROM `site_1.0_2018_05_03`.`org`;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;drop table TEMP;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 May 2018 18:55:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/how-to-replace-multiple-field-values-with-null/m-p/42883#M606013</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-05-16T18:55:38Z</dc:date>
    </item>
    <item>
      <title>Re: how to replace multiple field values with null.</title>
      <link>https://community.qlik.com/t5/QlikView/how-to-replace-multiple-field-values-with-null/m-p/42884#M606014</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;yes i want to replace every inappropriate date with null but only by year not with month and day.&lt;/P&gt;&lt;P&gt;like i write 9000 in the query and it is replaced with null. i just want to enter the year in the script because there are too many different months and days in every inappropriate year. &lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 May 2018 19:07:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/how-to-replace-multiple-field-values-with-null/m-p/42884#M606014</guid>
      <dc:creator>shahfaisalq</dc:creator>
      <dc:date>2018-05-16T19:07:58Z</dc:date>
    </item>
    <item>
      <title>Re: how to replace multiple field values with null.</title>
      <link>https://community.qlik.com/t5/QlikView/how-to-replace-multiple-field-values-with-null/m-p/42885#M606015</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How many different dates you want to convert to Nulls? Any specific reason you want to convert to nulls rather do not pull those dates into your QV if they do not help? Can you show some sample data with an example?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 May 2018 19:09:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/how-to-replace-multiple-field-values-with-null/m-p/42885#M606015</guid>
      <dc:creator>vishsaggi</dc:creator>
      <dc:date>2018-05-16T19:09:05Z</dc:date>
    </item>
    <item>
      <title>Re: how to replace multiple field values with null.</title>
      <link>https://community.qlik.com/t5/QlikView/how-to-replace-multiple-field-values-with-null/m-p/42886#M606016</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i used this script to remove 9000/12/31 date&lt;/P&gt;&lt;P&gt;if(year(Date([Date_Start_Org]))=9000, Null(),Date([Date_Start_Org] ))AS [Date_Start_Org],&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now i want to remove&amp;nbsp; the 0001 and etc, if you see the empty area that is the 9000/12/31 date which has been removed by the above script which i use. now i want to remove those multiple dates but by year. not mentioning months and days.&lt;IMG alt="Dates.jpg" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/202595_Dates.jpg" style="height: auto;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 May 2018 19:25:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/how-to-replace-multiple-field-values-with-null/m-p/42886#M606016</guid>
      <dc:creator>shahfaisalq</dc:creator>
      <dc:date>2018-05-16T19:25:53Z</dc:date>
    </item>
    <item>
      <title>Re: how to replace multiple field values with null.</title>
      <link>https://community.qlik.com/t5/QlikView/how-to-replace-multiple-field-values-with-null/m-p/42887#M606017</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;quiet easy, just try&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000;"&gt;date(date#(&lt;/SPAN&gt;&lt;SPAN style="color: #ff0000; font-size: 10pt; font-family: arial, helvetica, sans-serif;"&gt;&lt;SPAN style="color: #000000;"&gt;[Date_Start_Org]​,&lt;SPAN style="font-size: 10pt; font-family: 'Courier New';"&gt;'YYYY/MM/DD')) as &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-size: 10pt; font-family: arial, helvetica, sans-serif;"&gt;[Date_Start_Org]​&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 May 2018 19:40:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/how-to-replace-multiple-field-values-with-null/m-p/42887#M606017</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-05-16T19:40:16Z</dc:date>
    </item>
    <item>
      <title>Re: how to replace multiple field values with null.</title>
      <link>https://community.qlik.com/t5/QlikView/how-to-replace-multiple-field-values-with-null/m-p/42888#M606018</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;or&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;date(&lt;SPAN style="color: #000000; font-size: 10pt; font-family: arial, helvetica, sans-serif;"&gt;[Date_Start_Org]) as &lt;SPAN style="color: #000000; font-size: 10pt; font-family: arial, helvetica, sans-serif;"&gt;[Date_Start_Org]&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 May 2018 19:41:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/how-to-replace-multiple-field-values-with-null/m-p/42888#M606018</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-05-16T19:41:38Z</dc:date>
    </item>
    <item>
      <title>Re: how to replace multiple field values with null.</title>
      <link>https://community.qlik.com/t5/QlikView/how-to-replace-multiple-field-values-with-null/m-p/42889#M606019</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Robin,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am at the very beginner level of Qlik scripting . Please write the whole query because i don't get it and&amp;nbsp; i will really appreciate you efforts .&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;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 May 2018 19:52:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/how-to-replace-multiple-field-values-with-null/m-p/42889#M606019</guid>
      <dc:creator>shahfaisalq</dc:creator>
      <dc:date>2018-05-16T19:52:03Z</dc:date>
    </item>
    <item>
      <title>Re: how to replace multiple field values with null.</title>
      <link>https://community.qlik.com/t5/QlikView/how-to-replace-multiple-field-values-with-null/m-p/42890#M606020</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;May be try this?&lt;/P&gt;&lt;P&gt;I have given the YearFlg as 1950 but you can give which ever is your min date your source has.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;[org]:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;[ID_FRS_Org] AS [ID_FRS_Link],&lt;/P&gt;&lt;P&gt;[Name_Org],&lt;/P&gt;&lt;P&gt;[Type_Org],&lt;/P&gt;&lt;P&gt;[Type_Org_Affiliation],&lt;/P&gt;&lt;P&gt;[Email_Org],&lt;/P&gt;&lt;P&gt;Date([Date_Start_Org]) AS Date_Start_Org,&lt;/P&gt;&lt;P&gt;Date([Date_End_Org] ) AS [Date_End_Org],&lt;/P&gt;&lt;P&gt;[Aspect_Org],&lt;/P&gt;&lt;P&gt;[System_Org],&lt;/P&gt;&lt;P&gt;[ID_System_Org],&lt;/P&gt;&lt;P&gt;[Phone_Org],&lt;/P&gt;&lt;P&gt;[ID_State_Org]&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #800000;"&gt;&lt;STRONG&gt;WHERE YearFlg &amp;gt; 1950 AND YearFlg &amp;lt;= Year(Today());&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SQL SELECT `ID_FRS_Org`,&lt;/P&gt;&lt;P&gt;`Name_Org`,&lt;/P&gt;&lt;P&gt;`Type_Org`,&lt;/P&gt;&lt;P&gt;`Type_Org_Affiliation`,&lt;/P&gt;&lt;P&gt;`Email_Org`,&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #800000;"&gt;&lt;STRONG&gt;YEAR(`Date_Start_Org`) AS YearFlg&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;`Date_Start_Org`,&lt;/P&gt;&lt;P&gt;`Date_End_Org`,&lt;/P&gt;&lt;P&gt;`Aspect_Org`,&lt;/P&gt;&lt;P&gt;`System_Org`,&lt;/P&gt;&lt;P&gt;`ID_System_Org`,&lt;/P&gt;&lt;P&gt;`Phone_Org`,&lt;/P&gt;&lt;P&gt;`ID_State_Org`&lt;/P&gt;&lt;P&gt;FROM `site_1.0_2018_05_03`.`org`;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 May 2018 19:54:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/how-to-replace-multiple-field-values-with-null/m-p/42890#M606020</guid>
      <dc:creator>vishsaggi</dc:creator>
      <dc:date>2018-05-16T19:54:17Z</dc:date>
    </item>
    <item>
      <title>Re: how to replace multiple field values with null.</title>
      <link>https://community.qlik.com/t5/QlikView/how-to-replace-multiple-field-values-with-null/m-p/42891#M606021</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i try your given script but its not working&amp;nbsp; by the way i am using mysql database with Qlik sense desktop.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 May 2018 20:21:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/how-to-replace-multiple-field-values-with-null/m-p/42891#M606021</guid>
      <dc:creator>shahfaisalq</dc:creator>
      <dc:date>2018-05-16T20:21:35Z</dc:date>
    </item>
    <item>
      <title>Re: how to replace multiple field values with null.</title>
      <link>https://community.qlik.com/t5/QlikView/how-to-replace-multiple-field-values-with-null/m-p/42892#M606022</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Are you getting any error or you are getting additional irrelevant dates? &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 May 2018 20:52:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/how-to-replace-multiple-field-values-with-null/m-p/42892#M606022</guid>
      <dc:creator>vishsaggi</dc:creator>
      <dc:date>2018-05-16T20:52:12Z</dc:date>
    </item>
    <item>
      <title>Re: how to replace multiple field values with null.</title>
      <link>https://community.qlik.com/t5/QlikView/how-to-replace-multiple-field-values-with-null/m-p/42893#M606023</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;IMG alt="Capture.JPG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/202600_Capture.JPG" style="height: auto;" /&gt;yes i getting an error on your defined script which say the year field is not exist. by the runing the Robin script the irrelevant dates are removed but the rest of the dates has been changed like in the image.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 May 2018 21:02:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/how-to-replace-multiple-field-values-with-null/m-p/42893#M606023</guid>
      <dc:creator>shahfaisalq</dc:creator>
      <dc:date>2018-05-16T21:02:38Z</dc:date>
    </item>
    <item>
      <title>Re: how to replace multiple field values with null.</title>
      <link>https://community.qlik.com/t5/QlikView/how-to-replace-multiple-field-values-with-null/m-p/42894#M606024</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;[org]:&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;LOAD&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;[ID_FRS_Org] AS [ID_FRS_Link],&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;[Name_Org],&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;[Type_Org],&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;[Type_Org_Affiliation],&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;[Email_Org],&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="color: #800000;"&gt;YearFlg,&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="color: #800000;"&gt;Date(Date#([Date_Start_Org], 'M/DD/YYYY' ), 'M/DD/YYYY') AS Date_Start_Org,&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Date([Date_End_Org] ) AS [Date_End_Org],&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;[Aspect_Org],&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;[System_Org],&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;[ID_System_Org],&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;[Phone_Org],&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;[ID_State_Org]&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: inherit; color: #800000;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;WHERE YearFlg &amp;gt; 1950 AND YearFlg &amp;lt;= Year(Today());&lt;/STRONG&gt;&lt;/SPAN&gt;&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;SQL SELECT `ID_FRS_Org`,&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;`Name_Org`,&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;`Type_Org`,&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;`Type_Org_Affiliation`,&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;`Email_Org`,&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: inherit; color: #800000;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;YEAR(`Date_Start_Org`) AS YearFlg,&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;`Date_Start_Org`,&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;`Date_End_Org`,&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;`Aspect_Org`,&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;`System_Org`,&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;`ID_System_Org`,&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;`Phone_Org`,&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;`ID_State_Org`&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;FROM `site_1.0_2018_05_03`.`org`;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 May 2018 21:20:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/how-to-replace-multiple-field-values-with-null/m-p/42894#M606024</guid>
      <dc:creator>vishsaggi</dc:creator>
      <dc:date>2018-05-16T21:20:18Z</dc:date>
    </item>
    <item>
      <title>Re: how to replace multiple field values with null.</title>
      <link>https://community.qlik.com/t5/QlikView/how-to-replace-multiple-field-values-with-null/m-p/42895#M606025</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Vishwarath,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;still the code is not working. I search on the internet and their is very limited data regarding to qlik sense scripting. But i think why not we use pick,match or replace function.&lt;/P&gt;&lt;P&gt;Now my question is either the above three mentioned function will work in my case.&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;Regards,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 May 2018 07:23:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/how-to-replace-multiple-field-values-with-null/m-p/42895#M606025</guid>
      <dc:creator>shahfaisalq</dc:creator>
      <dc:date>2018-05-17T07:23:27Z</dc:date>
    </item>
    <item>
      <title>Re: how to replace multiple field values with null.</title>
      <link>https://community.qlik.com/t5/QlikView/how-to-replace-multiple-field-values-with-null/m-p/42896#M606027</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please read this great treatment by HIC first: &lt;A href="https://community.qlik.com/qlik-blogpost/2622"&gt;Get the Dates Right&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 May 2018 09:58:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/how-to-replace-multiple-field-values-with-null/m-p/42896#M606027</guid>
      <dc:creator>Peter_Cammaert</dc:creator>
      <dc:date>2018-05-17T09:58:02Z</dc:date>
    </item>
  </channel>
</rss>

