<?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 Follow up to &amp;quot;Modify: Using Advanced Formulas for Data Standardization&amp;quot; Webinar in DemandTools</title>
    <link>https://mycommunity.validity.com/t5/demandtools/follow-up-to-quot-modify-using-advanced-formulas-for-data/m-p/1724#M937</link>
    <description>&lt;P&gt;Hi Everyone,&lt;/P&gt;&lt;P&gt;It was a pleasure hosting the&amp;nbsp;Modify: Using Advanced Formulas for Data Standardization webinar today.&amp;nbsp; I hope you all found it useful!&lt;/P&gt;&lt;P&gt;I'm going to include all formulas that I used as examples during the session.&amp;nbsp; I will also provide the list of formulas available shortly.&lt;/P&gt;&lt;P&gt;Best,&lt;/P&gt;</description>
    <pubDate>Tue, 20 Feb 2024 17:03:30 GMT</pubDate>
    <dc:creator>AnthonyValidity</dc:creator>
    <dc:date>2024-02-20T17:03:30Z</dc:date>
    <item>
      <title>Follow up to "Modify: Using Advanced Formulas for Data Standardization" Webinar</title>
      <link>https://mycommunity.validity.com/t5/demandtools/follow-up-to-quot-modify-using-advanced-formulas-for-data/m-p/1724#M937</link>
      <description>&lt;P&gt;Hi Everyone,&lt;/P&gt;&lt;P&gt;It was a pleasure hosting the&amp;nbsp;Modify: Using Advanced Formulas for Data Standardization webinar today.&amp;nbsp; I hope you all found it useful!&lt;/P&gt;&lt;P&gt;I'm going to include all formulas that I used as examples during the session.&amp;nbsp; I will also provide the list of formulas available shortly.&lt;/P&gt;&lt;P&gt;Best,&lt;/P&gt;</description>
      <pubDate>Tue, 20 Feb 2024 17:03:30 GMT</pubDate>
      <guid>https://mycommunity.validity.com/t5/demandtools/follow-up-to-quot-modify-using-advanced-formulas-for-data/m-p/1724#M937</guid>
      <dc:creator>AnthonyValidity</dc:creator>
      <dc:date>2024-02-20T17:03:30Z</dc:date>
    </item>
    <item>
      <title>Re: Follow up to "Modify: Using Advanced Formulas for Data Standardization" Webinar</title>
      <link>https://mycommunity.validity.com/t5/demandtools/follow-up-to-quot-modify-using-advanced-formulas-for-data/m-p/1725#M938</link>
      <description>&lt;P&gt;&lt;STRONG&gt;Contact Object:&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;Changing CurrencyIsoCoe (If in US, change to USD):&lt;BR /&gt;&lt;SPAN&gt;IF(OR(${MailingCountry}="US",${MailingCountry}="USA",${MailingCountry}="United States"), "USD", ${CurrencyIsoCode})&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Changing&amp;nbsp;Alternate_Email__c&amp;nbsp; (If same as Email, clear out):&lt;BR /&gt;if(${Email}=${Alternate_Email__c}, "",${Alternate_Email__c})&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Changing&amp;nbsp;FirstName (Can be used on any field, replaces accented letters with English letters):&lt;BR /&gt;SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE( ${FirstName},"ā","a"),"à","a"),"á","a"),"â","a"),"ã","a"),"ä","a"),"å","a"),"è","e"),"é","e"),"ê","e"),"ë","e"),"ç","c"),"ì","i"),"í","i"),"î","i"),"ï","i"),"ð","th"),"ñ","n"),"ò","o"),"ó","o"),"ô","o"),"õ","o"),"ö","o"),"ù","u"),"ú","u"),"û","u"),"ü","u"),"ý","y"),"ÿ","y"),"š","s"),"Ž","z")&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Changing&amp;nbsp;Department (Searches for keywords):&lt;BR /&gt;if(isnumber(search("Program",${Title})),"Product Management",if(isnumber(search("SDR",${Title})),"Marketing",if(isnumber(search("",${Title})),"Unknown",${Department})))&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Changing&amp;nbsp;MailingPostalCode :&lt;BR /&gt;IF(LEN(${MailingPostalCode}) &amp;lt; 5,ZipCodeClean(${MailingPostalCode}),IF(AND(LEN(${MailingPostalCode}) = 9,NOT(ISNUMBER(SEARCH("-",${MailingPostalCode})))),CONCATENATE(MID(${MailingPostalCode}, 1, 5),"-",MID(${MailingPostalCode}, 6, 4)),${MailingPostalCode}))&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Lead Object:&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Changing City (Removing special characters):&lt;BR /&gt;RegExReplace(${City}, "[^a-zA-Z\s.]", "") &lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Changing&amp;nbsp;Invalid_Email_Syntax__c (simple email syntax checker):&lt;BR /&gt;IF(ISBLANK(${Email}),"",IF(RegExMatch(${Email}, "^[a-zA-Z0-9_.-]+@[a-zA-Z0-9-]+(\.[a-zA-Z0-9-]+)*$")="",TRUE,FALSE))&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Changing&amp;nbsp;Preferred_Communication__c (Moving from many values to just three):&lt;BR /&gt;IF(OR(AND(${Preferred_Communication__c}="Email",${Invalid_Email_Syntax__c}=FALSE),${Preferred_Communication__c}="Phone", ${Preferred_Communication__c}="Snail Mail"),${Preferred_Communication__c},IF(ISBLANK(${Email}),IF(ISBLANK(${Phone}),"","Phone"),"Email"))&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Changing&amp;nbsp;LastName:&lt;BR /&gt;RegExReplace(${LastName}, "[^a-zA-Z\s\-]", "") &lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 20 Feb 2024 17:13:02 GMT</pubDate>
      <guid>https://mycommunity.validity.com/t5/demandtools/follow-up-to-quot-modify-using-advanced-formulas-for-data/m-p/1725#M938</guid>
      <dc:creator>AnthonyValidity</dc:creator>
      <dc:date>2024-02-20T17:13:02Z</dc:date>
    </item>
    <item>
      <title>Re: Follow up to "Modify: Using Advanced Formulas for Data Standardization" Webinar</title>
      <link>https://mycommunity.validity.com/t5/demandtools/follow-up-to-quot-modify-using-advanced-formulas-for-data/m-p/1726#M939</link>
      <description>&lt;P&gt;Spreadsheet Formulas Available in DTV's Modify Module:&lt;BR /&gt;&lt;BR /&gt;Function&lt;BR /&gt;ABS&lt;BR /&gt;AND&lt;BR /&gt;AVEDEV&lt;BR /&gt;AVERAGE&lt;BR /&gt;CEILING&lt;BR /&gt;CHAR&lt;BR /&gt;CHOOSE&lt;BR /&gt;CLEAN&lt;BR /&gt;CODE&lt;BR /&gt;COMBIN&lt;BR /&gt;COMPLEX&lt;BR /&gt;CONCATENATE&lt;BR /&gt;COUNT&lt;BR /&gt;COUNTA&lt;BR /&gt;DATE&lt;BR /&gt;DAY&lt;BR /&gt;DAYS360&lt;BR /&gt;DEGREES&lt;BR /&gt;DELTA&lt;BR /&gt;DEVSQ&lt;BR /&gt;DOLLAR&lt;BR /&gt;EDATE&lt;BR /&gt;EOMONTH&lt;BR /&gt;EVEN&lt;BR /&gt;EXACT&lt;BR /&gt;EXP&lt;BR /&gt;FACT&lt;BR /&gt;FACTDOUBLE&lt;BR /&gt;FIND&lt;BR /&gt;FIXED&lt;BR /&gt;FLOOR&lt;BR /&gt;FV&lt;BR /&gt;HOUR&lt;BR /&gt;IF&lt;BR /&gt;IFERROR&lt;BR /&gt;IPMT&lt;BR /&gt;IRR&lt;BR /&gt;ISBLANK&lt;BR /&gt;ISERR&lt;BR /&gt;ISERROR&lt;BR /&gt;ISEVEN&lt;BR /&gt;ISLOGICAL&lt;BR /&gt;ISNA&lt;BR /&gt;ISNONTEXT&lt;BR /&gt;ISNUMBER&lt;BR /&gt;ISODD&lt;BR /&gt;ISREF&lt;BR /&gt;ISTEXT&lt;BR /&gt;LARGE&lt;BR /&gt;LEFT&lt;BR /&gt;LEN&lt;BR /&gt;LN&lt;BR /&gt;LOG&lt;BR /&gt;LOG10&lt;BR /&gt;LOWER&lt;BR /&gt;MATCH&lt;BR /&gt;MAX&lt;BR /&gt;MAXA&lt;BR /&gt;MEDIAN&lt;BR /&gt;MID&lt;BR /&gt;MIN&lt;BR /&gt;MINA&lt;BR /&gt;MINUTE&lt;BR /&gt;MIRR&lt;BR /&gt;MOD&lt;BR /&gt;MODE&lt;BR /&gt;MONTH&lt;BR /&gt;MROUND&lt;BR /&gt;NETWORKDAYS&lt;BR /&gt;NOT&lt;BR /&gt;NOW&lt;BR /&gt;NPER&lt;BR /&gt;NPV&lt;BR /&gt;ODD&lt;BR /&gt;OR&lt;BR /&gt;PERCENTILE&lt;BR /&gt;PI&lt;BR /&gt;PMT&lt;BR /&gt;POWER&lt;BR /&gt;PPMT&lt;BR /&gt;PRODUCT&lt;BR /&gt;PROPER&lt;BR /&gt;PV&lt;BR /&gt;QUOTIENT&lt;BR /&gt;RAND&lt;BR /&gt;RANDBETWEEN&lt;BR /&gt;RANK&lt;BR /&gt;RATE&lt;BR /&gt;REPLACE&lt;BR /&gt;REPT&lt;BR /&gt;RIGHT&lt;BR /&gt;ROMAN&lt;BR /&gt;ROUND&lt;BR /&gt;ROUNDDOWN&lt;BR /&gt;ROUNDUP&lt;BR /&gt;SEARCH&lt;BR /&gt;SECOND&lt;BR /&gt;SIGN&lt;BR /&gt;SLOPE&lt;BR /&gt;SMALL&lt;BR /&gt;SQRT&lt;BR /&gt;STDEV&lt;BR /&gt;SUBSTITUTE&lt;BR /&gt;SUM&lt;BR /&gt;SUMPRODUCT&lt;BR /&gt;SUMSQ&lt;BR /&gt;SUMX2MY2&lt;BR /&gt;SUMX2PY2&lt;BR /&gt;SUMXMY2&lt;BR /&gt;TEXT&lt;BR /&gt;TIME&lt;BR /&gt;TODAY&lt;BR /&gt;TRIM&lt;BR /&gt;TRUNC&lt;BR /&gt;VALUE&lt;BR /&gt;VAR&lt;BR /&gt;VARP&lt;BR /&gt;WEEKDAY&lt;BR /&gt;WEEKNUM&lt;BR /&gt;YEAR&lt;BR /&gt;YEARFRAC&lt;BR /&gt;FALSE&lt;BR /&gt;TRUE&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 20 Feb 2024 17:14:14 GMT</pubDate>
      <guid>https://mycommunity.validity.com/t5/demandtools/follow-up-to-quot-modify-using-advanced-formulas-for-data/m-p/1726#M939</guid>
      <dc:creator>AnthonyValidity</dc:creator>
      <dc:date>2024-02-20T17:14:14Z</dc:date>
    </item>
    <item>
      <title>Re: Follow up to "Modify: Using Advanced Formulas for Data Standardization" Webinar</title>
      <link>https://mycommunity.validity.com/t5/demandtools/follow-up-to-quot-modify-using-advanced-formulas-for-data/m-p/1727#M940</link>
      <description>&lt;P&gt;&lt;A href="https://knowledge.validity.com/hc/en-us/articles/7989596657819-DemandTools-Modify-Formula-Dictionary" target="_blank" rel="noopener"&gt;DTV's Formula Dictionary Article&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;AllTextAfterChar&lt;BR /&gt;AllTextBeforeChar&lt;BR /&gt;ConvertData&lt;BR /&gt;ConvertToString&lt;BR /&gt;CountryMatchReturn2CharacterName&lt;BR /&gt;CountryMatchReturn3CharacterName&lt;BR /&gt;CountryMatchReturnISONumber&lt;BR /&gt;CountryMatchReturnLongName&lt;BR /&gt;DateAddValue&lt;BR /&gt;FirstWord&lt;BR /&gt;IntlPhoneFix&lt;BR /&gt;Mid_1&lt;BR /&gt;Mid_2&lt;BR /&gt;New_Line&lt;BR /&gt;Normalized_US_Address&lt;BR /&gt;Normalized_US_Address2LineSuiteFirst&lt;BR /&gt;Normalized_US_Address2LineSuiteLast&lt;BR /&gt;ParseNameReturnFirstName&lt;BR /&gt;ParseNameReturnLastName&lt;BR /&gt;ParseNameReturnSuffix&lt;BR /&gt;ParseNameReturnTitle&lt;BR /&gt;ProperCaseName&lt;BR /&gt;ProperCaseNameForce&lt;BR /&gt;RegExMatch&lt;BR /&gt;RegExReplace&lt;BR /&gt;RelaxedDomain&lt;BR /&gt;RemoveLastWord&lt;BR /&gt;StateMatchLongName&lt;BR /&gt;StateMatchShortName&lt;BR /&gt;StringReplace&lt;BR /&gt;StringReplaceCS&lt;BR /&gt;TrimEndSpaces&lt;BR /&gt;TrimStartSpaces&lt;BR /&gt;ZipCodeClean&lt;/P&gt;</description>
      <pubDate>Tue, 20 Feb 2024 17:14:59 GMT</pubDate>
      <guid>https://mycommunity.validity.com/t5/demandtools/follow-up-to-quot-modify-using-advanced-formulas-for-data/m-p/1727#M940</guid>
      <dc:creator>AnthonyValidity</dc:creator>
      <dc:date>2024-02-20T17:14:59Z</dc:date>
    </item>
  </channel>
</rss>

