<?xml version="1.0" encoding="UTF-8" ?><!-- generator=Zoho Sites --><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/"><channel><atom:link href="https://www.creatorscripts.com/blogs/tag/custom-functions/feed" rel="self" type="application/rss+xml"/><title>Creator Scripts. - Zoho Blogs #Custom Functions</title><description>Creator Scripts. - Zoho Blogs #Custom Functions</description><link>https://www.creatorscripts.com/blogs/tag/custom-functions</link><lastBuildDate>Wed, 13 May 2026 21:49:31 -0700</lastBuildDate><generator>http://zoho.com/sites/</generator><item><title><![CDATA[Update Phone Format (206) 800-1234 in Zoho Creator]]></title><link>https://www.creatorscripts.com/blogs/post/Update-Phone-Format-206-800-1234-in-Zoho-Creator</link><description><![CDATA[You can add the below script On Add On Validate or On Add On Success. Just replace the name of the input.Phone_additional field with the name of your ]]></description><content:encoded><![CDATA[<div class="zpcontent-container blogpost-container "><div data-element-id="elm_IijoQ1P4QvOqhitYKXptJQ" data-element-type="section" class="zpsection "><style type="text/css"></style><div class="zpcontainer-fluid zpcontainer"><div data-element-id="elm_nPihdnpzQQmSGIj2sgMfDw" data-element-type="row" class="zprow zprow-container zpalign-items- zpjustify-content- " data-equal-column=""><style type="text/css"></style><div data-element-id="elm_c-EB8IN9Q8iTIoviEI0iXg" data-element-type="column" class="zpelem-col zpcol-12 zpcol-md-12 zpcol-sm-12 zpalign-self- "><style type="text/css"></style><div data-element-id="elm_coTBTvlrRFS_rRF2G-GbEw" data-element-type="text" class="zpelement zpelem-text "><style></style><div class="zptext zptext-align- " data-editor="true"><div><p><span></span></p><p style="margin-bottom:22px;"><font face="Georgia, Times, serif" size="3"><br></font></p><p style="margin-bottom:22px;"><font face="Georgia, Times, serif" size="3">You can add the below script On Add On Validate or On Add On Success. Just replace the name of the input.Phone_additional field with the name of your phone field in your zoho form.</font></p><div><font face="Georgia, Times, serif" size="3">//Update Phone format</font></div><div><font face="Georgia, Times, serif" size="3">if ((input.Phone_additional.getAlphaNumeric().length() != 10) &amp;&amp; (input.Phone_additional != &quot;&quot;))</font></div><div><font face="Georgia, Times, serif" size="3">{</font></div><div><font face="Georgia, Times, serif" size="3">errors = List:String();</font></div><div><font face="Georgia, Times, serif" size="3">errors.add(&quot;Phone Number is not a 10 digit number.&quot;);</font></div><div></div><div><font face="Georgia, Times, serif" size="3">}</font></div><div><font face="Georgia, Times, serif" size="3">else if ((input.Phone_additional != &quot;&quot;) &amp;&amp; (input.Phone_additional.getAlphaNumeric().length() == 10))</font></div><div><font face="Georgia, Times, serif" size="3">{</font></div><div><font face="Georgia, Times, serif" size="3">input.Phone_additional = thisapp.Update.PhoneFormat(input.Phone_additional);</font></div><div><font face="Georgia, Times, serif" size="3">}</font></div><div><font face="Georgia, Times, serif" size="3">else</font></div><div><font face="Georgia, Times, serif" size="3">{</font></div><p style="margin-bottom:22px;"><font face="Georgia, Times, serif" size="3">}</font></p><p style="margin-bottom:22px;"><font face="Georgia, Times, serif" size="3">The script above calls a function to update the Phone string. You can name your function the same as the one in this example so you can only copy &amp; paste the script. If you name your function differently just make sure to adjust the function name in your script as well.</font></p><p></p></div></div>
</div><div data-element-id="elm_PZ9E5NGdRe-9R4LwY78arA" data-element-type="button" class="zpelement zpelem-button "><style></style><div class="zpbutton-container zpbutton-align-center "><style type="text/css"></style><a class="zpbutton-wrapper zpbutton zpbutton-type-primary zpbutton-size-md zpbutton-style-none " href="http://zoholibrary.creatorscripts.com/p/deluge-scripts-library" target="_blank"><span class="zpbutton-content">Access Code</span></a></div>
</div></div></div></div></div></div> ]]></content:encoded><pubDate>Wed, 31 Jan 2018 07:40:10 -0600</pubDate></item><item><title><![CDATA[Zoho Creator Hack: How To Format Phone Numbers with custom function]]></title><link>https://www.creatorscripts.com/blogs/post/Zoho-Creator-Hack- How-To-Format-Phone-Numbers with-custom-function</link><description><![CDATA[The Problem:  How can I make it so when a phone number (String) is entered in a form like this:9876543210 it automatically formats it to 987-654-3210 ]]></description><content:encoded><![CDATA[<div class="zpcontent-container blogpost-container "><div data-element-id="elm_68ZFd9G7T1ew4NPUFpIFMw" data-element-type="section" class="zpsection "><style type="text/css"></style><div class="zpcontainer-fluid zpcontainer"><div data-element-id="elm_XOod9u2-TKKeusOSFiBudw" data-element-type="row" class="zprow zprow-container zpalign-items- zpjustify-content- " data-equal-column=""><style type="text/css"></style><div data-element-id="elm_oTh4MO23QTuCktBxxD2UEA" data-element-type="column" class="zpelem-col zpcol-12 zpcol-md-12 zpcol-sm-12 zpalign-self- "><style type="text/css"></style><div data-element-id="elm_dE8SEGJ2TPKAwz7Mqd29WQ" data-element-type="text" class="zpelement zpelem-text "><style></style><div class="zptext zptext-align- " data-editor="true"><div><p><font face="Georgia, Times New Roman, Times, serif" size="3"><b>The Problem:</b></font></p><p><span><font face="Georgia, Times New Roman, Times, serif" size="3"> How can I make it so when a phone number (String) is entered in a form like this:9876543210 it automatically formats it to 987-654-3210</font></span><br></p><p><br></p></div></div>
</div><div data-element-id="elm_MT1IQdHwTleFclVn_XDkOA" data-element-type="iframe" class="zpelement zpelem-iframe "><style type="text/css"></style><div class="zpiframe-container zpiframe-align-center"><iframe class="zpiframe " src="//www.youtube.com/embed/Yln1ya-H5XY?&amp;wmode=transparent" width="525" height="374" align="center" frameBorder="0"></iframe></div>
</div><div data-element-id="elm_BhJAV008R1ixRL2wXTtg2A" data-element-type="text" class="zpelement zpelem-text "><style></style><div class="zptext zptext-align- " data-editor="true"><div><p><font face="Georgia, Times New Roman, Times, serif" size="3"><b>The Script:</b></font></p><p><font face="Georgia, Times New Roman, Times, serif" size="3"><br></font></p><p><span><font face="Georgia, Times New Roman, Times, serif" size="3"></font></span></p><div><font face="Georgia, Times New Roman, Times, serif" size="3">1.Please <a href="https://www.zoho.com/creator/help/script/defining-a-function.html" target="_blank">define a function</a> like below in your app:</font></div><div><font face="Georgia, Times New Roman, Times, serif" size="3"><i><br></i></font></div><div><font face="Georgia, Times New Roman, Times, serif" size="3"><i>string Format_Phone(string phone_input)</i></font></div><div><font face="Georgia, Times New Roman, Times, serif" size="3"><i><br></i></font></div><div><font face="Georgia, Times New Roman, Times, serif" size="3"><i>{</i><i>    if (((input.phone_input.getAlphaNumeric())).length()  !=  10)</i><i>    {</i><i>        phone_output = &quot;error&quot;;</i><i>    }</i><i>    else</i><i>    {</i><i>        phone_output = (((( (input.phone_input.getAlphaNumeric()).subString(0,3)) + &quot;-&quot;) + (input.phone_input.getAlphaNumeric()).subString(3,6)) + &quot;-&quot;) + (input.phone_input.getAlphaNumeric()).subString(6,10);</i><i>    }</i><i>    </i></font></div><div><font face="Georgia, Times New Roman, Times, serif" size="3"><i><br></i></font></div><div><font face="Georgia, Times New Roman, Times, serif" size="3"><i>return phone_output;</i></font></div><div><font face="Georgia, Times New Roman, Times, serif" size="3"><i><br></i></font></div><div><font face="Georgia, Times New Roman, Times, serif" size="3"><i>}</i><span><br></span>2.<a href="https://www.zoho.com/creator/help/script/invoking-a-function.html" target="_blank">Invoke the function</a> in your forms On add --&gt;On validate using below code:</font></div><div><font face="Georgia, Times New Roman, Times, serif" size="3"><font><br><i></i></font></font></div><span><font face="Georgia, Times New Roman, Times, serif" size="3">errorMsg = &quot;&quot;;<br>if (input.Phone_Format  !=  &quot;&quot;)<br>{<br>    pf = thisapp.Format_Phone(input.Phone_Format);<br><br><br>if ( pf  ==  &quot;error&quot;)<br>{<br>    errorMsg = &quot;Please enter a 10 digit phone number for &lt;b&gt;Primary Phone&lt;/b&gt;.&quot;;<br>}<br>else<br>{<br>  input.Phone_Format = pf;  <br>}<br>}</font></span><div><font face="Georgia, Times New Roman, Times, serif" size="3"><i></i><i><br></i></font></div><br><p></p></div></div>
</div><div data-element-id="elm_azIPoNDaRk-dXldv4hTo8Q" data-element-type="codeSnippet" class="zpelement zpelem-codesnippet "><div class="zpsnippet-container"><script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script><!-- CSBlogs --><ins class="adsbygoogle" style="display:block;" data-ad-client="ca-pub-7483619621105949" data-ad-slot="7727730962" data-ad-format="auto"></ins><script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script></div>
</div></div></div></div></div></div> ]]></content:encoded><pubDate>Tue, 08 Dec 2015 16:43:24 -0600</pubDate></item><item><title><![CDATA[Zoho Hack: Update Zoho CRM fields values using Custom Functions]]></title><link>https://www.creatorscripts.com/blogs/post/Zoho-Hack-Update-Zoho-CRM-fields-values-using-Custom-Functions</link><description><![CDATA[<img align="left" hspace="5" src="https://www.creatorscripts.com/ZohoCRMCustomfunctions.png"/>Unlock the power of Zoho CRM with this hack! Dive into custom functions to seamlessly update field values, enhancing data accuracy and workflow efficiency. Guide inside.]]></description><content:encoded><![CDATA[<div class="zpcontent-container blogpost-container "><div data-element-id="elm_3Q4jPD1TRcmFjymKYIopQA" data-element-type="section" class="zpsection "><style type="text/css"></style><div class="zpcontainer-fluid zpcontainer"><div data-element-id="elm_tlZJES7YQrSSfBE_20iKwA" data-element-type="row" class="zprow zprow-container zpalign-items- zpjustify-content- " data-equal-column=""><style type="text/css"></style><div data-element-id="elm_5vuR-P_CT8CXPl1v3VhoMA" data-element-type="column" class="zpelem-col zpcol-12 zpcol-md-12 zpcol-sm-12 zpalign-self- "><style type="text/css"></style><div data-element-id="elm_CCibGFSCQBWgrYSlOUTS8A" data-element-type="iframe" class="zpelement zpelem-iframe "><style type="text/css"></style><div class="zpiframe-container zpiframe-align-center"><iframe class="zpiframe " src="//www.youtube.com/embed/-c_2Kr-FgAI?&amp;wmode=transparent" width="525" height="344" align="center" frameBorder="0"></iframe></div>
</div><div data-element-id="elm_0ugWPrCDRniYXUdxdzAF5g" data-element-type="text" class="zpelement zpelem-text "><style></style><div class="zptext zptext-align- " data-editor="true"><div><h2>Custom Function to Update a value in Zoho CRM</h2></div></div>
</div><div data-element-id="elm_dYWEUUw0QfSA2by5mNNMdA" data-element-type="text" class="zpelement zpelem-text "><style> [data-element-id="elm_dYWEUUw0QfSA2by5mNNMdA"].zpelem-text { border-radius:1px; } </style><div class="zptext zptext-align- " data-editor="true"><div><div><p><span style="font-size:18px;">potupdate = zoho.crm.updateRecord(&quot;Potentials&quot;,input.potentialID.toString(),{ &quot;Industry&quot; : input.Industry });</span></p><p><span style="font-size:18px;"><br></span></p><p><span style="font-size:18px;">&quot;Potentials&quot; is the name of the Module.</span></p><p><span style="font-size:18px;">&quot;input.potentialID&quot; is the name of the record ID you want to update.</span></p><p><span style="font-size:18px;">&quot;Industry&quot; is the name of the field to be updated within Potentials.</span></p><p><span style="font-size:18px;">&quot;input.Industry&quot; is&nbsp;the name of the field in&nbsp;Accounts module.&nbsp;</span><br></p></div></div></div>
</div><div data-element-id="elm_a0hQMiIXQ42_twYdGXFAFg" data-element-type="image" class="zpelement zpelem-image "><style> @media (min-width: 992px) { [data-element-id="elm_a0hQMiIXQ42_twYdGXFAFg"] .zpimage-container figure img { width: 994px !important ; height: 595px !important ; } } @media (max-width: 991px) and (min-width: 768px) { [data-element-id="elm_a0hQMiIXQ42_twYdGXFAFg"] .zpimage-container figure img { width:994px ; height:595px ; } } @media (max-width: 767px) { [data-element-id="elm_a0hQMiIXQ42_twYdGXFAFg"] .zpimage-container figure img { width:994px ; height:595px ; } } </style><div data-caption-color="" data-size-tablet="" data-size-mobile="" data-align="center" data-tablet-image-separate="" data-mobile-image-separate="" class="zpimage-container zpimage-align-center zpimage-size-original zpimage-tablet-fallback-original zpimage-mobile-fallback-original hb-lightbox " data-lightbox-options="
                type:fullscreen,
                theme:dark"><figure role="none" class="zpimage-data-ref"><span class="zpimage-anchor" role="link" tabindex="0" aria-label="Open Lightbox" style="cursor:pointer;"><picture><img class="zpimage zpimage-style-none zpimage-space-none " src="/files/CUSTOMFUNCITON2.png" width="994" height="595" loading="lazy" size="original" alt="Creator Scripts Zoho CRM" data-lightbox="true"/></picture></span><figcaption class="zpimage-caption zpimage-caption-align-center"><span class="zpimage-caption-content"></span></figcaption></figure></div>
</div><div data-element-id="elm_ZxpB12BmRaqejDpfcsT25g" data-element-type="text" class="zpelement zpelem-text "><style></style><div class="zptext zptext-align- " data-editor="true"><div><h2>The key is to select the fields values from the Arguments section.</h2></div></div>
</div><div data-element-id="elm_i7mqkIE5TjmJBYL08aOWQw" data-element-type="image" class="zpelement zpelem-image "><style> @media (min-width: 992px) { [data-element-id="elm_i7mqkIE5TjmJBYL08aOWQw"] .zpimage-container figure img { width: 797px !important ; height: 580px !important ; } } @media (max-width: 991px) and (min-width: 768px) { [data-element-id="elm_i7mqkIE5TjmJBYL08aOWQw"] .zpimage-container figure img { width:797px ; height:580px ; } } @media (max-width: 767px) { [data-element-id="elm_i7mqkIE5TjmJBYL08aOWQw"] .zpimage-container figure img { width:797px ; height:580px ; } } [data-element-id="elm_i7mqkIE5TjmJBYL08aOWQw"].zpelem-image { border-radius:1px; } </style><div data-caption-color="" data-size-tablet="" data-size-mobile="" data-align="center" data-tablet-image-separate="false" data-mobile-image-separate="false" class="zpimage-container zpimage-align-center zpimage-size-original zpimage-tablet-fallback-original zpimage-mobile-fallback-original hb-lightbox " data-lightbox-options="
                type:fullscreen,
                theme:dark"><figure role="none" class="zpimage-data-ref"><span class="zpimage-anchor" role="link" tabindex="0" aria-label="Open Lightbox" style="cursor:pointer;"><picture><img class="zpimage zpimage-style-none zpimage-space-none " src="/files/customfunction.png" width="797" height="580" loading="lazy" size="original" alt="Creator Scripts Zoho CRM" data-lightbox="true"/></picture></span><figcaption class="zpimage-caption zpimage-caption-align-center"><span class="zpimage-caption-content"></span></figcaption></figure></div>
</div><div data-element-id="elm_ZozXHg5ZSQus_voJ5i2Gsg" data-element-type="text" class="zpelement zpelem-text "><style></style><div class="zptext zptext-align- " data-editor="true"><div><p>Share this video with client or colleagues. &nbsp;<span><a href="https://youtu.be/-c_2Kr-FgAI" rel="nofollow" target="_self" title="https://youtu.be/-c_2Kr-FgAI">https://youtu.be/-c_2Kr-FgAI</a></span></p><p><br></p></div></div>
</div><div data-element-id="elm_AUTSKOrvD2clyOxDODCbhw" data-element-type="dividerIcon" class="zpelement zpelem-dividericon "><style type="text/css"> [data-element-id="elm_AUTSKOrvD2clyOxDODCbhw"].zpelem-dividericon{ border-radius:1px; } </style><style></style><div class="zpdivider-container zpdivider-icon zpdivider-align-center zpdivider-width100 zpdivider-line-style-solid zpdivider-icon-size-md zpdivider-style-none "><div class="zpdivider-common"><svg viewBox="0 0 640 512" height="640" width="512" xmlns="http://www.w3.org/2000/svg"><path d="M278.9 511.5l-61-17.7c-6.4-1.8-10-8.5-8.2-14.9L346.2 8.7c1.8-6.4 8.5-10 14.9-8.2l61 17.7c6.4 1.8 10 8.5 8.2 14.9L293.8 503.3c-1.9 6.4-8.5 10.1-14.9 8.2zm-114-112.2l43.5-46.4c4.6-4.9 4.3-12.7-.8-17.2L117 256l90.6-79.7c5.1-4.5 5.5-12.3.8-17.2l-43.5-46.4c-4.5-4.8-12.1-5.1-17-.5L3.8 247.2c-5.1 4.7-5.1 12.8 0 17.5l144.1 135.1c4.9 4.6 12.5 4.4 17-.5zm327.2.6l144.1-135.1c5.1-4.7 5.1-12.8 0-17.5L492.1 112.1c-4.8-4.5-12.4-4.3-17 .5L431.6 159c-4.6 4.9-4.3 12.7.8 17.2L523 256l-90.6 79.7c-5.1 4.5-5.5 12.3-.8 17.2l43.5 46.4c4.5 4.9 12.1 5.1 17 .6z"></path></svg></div>
</div></div><div data-element-id="elm_IKqDzE4xImAFqAjrMWnKcg" data-element-type="codeSnippet" class="zpelement zpelem-codesnippet "><div class="zpsnippet-container"><div itemscope itemtype="https://schema.org/FAQPage"><div itemscope itemprop="mainEntity" itemtype="https://schema.org/Question"><h3 itemprop="name">What do you use Zoho CRM for?</h3><div itemscope itemprop="acceptedAnswer" itemtype="https://schema.org/Answer"><div itemprop="text"><a href="https://www.creatorscripts.com/zohocrm">Zoho CRM</a> is used to manage customer relationships, track sales, and streamline business processes. It helps businesses automate and streamline their sales, marketing, customer support, and inventory management processes. </div>
</div></div><div itemscope itemprop="mainEntity" itemtype="https://schema.org/Question"><h3 itemprop="name">Is Zoho owned by Google?</h3><div itemscope itemprop="acceptedAnswer" itemtype="https://schema.org/Answer"><div itemprop="text"> No, Zoho is not owned by Google. Zoho is a privately held company based in Chennai, India. </div>
</div></div><div itemscope itemprop="mainEntity" itemtype="https://schema.org/Question"><h3 itemprop="name">Who is Zoho CRM best for?</h3><div itemscope itemprop="acceptedAnswer" itemtype="https://schema.org/Answer"><div itemprop="text"> Zoho CRM is best for small to medium-sized businesses looking for a cost-effective and customizable CRM solution. It's also suitable for businesses in a variety of industries, including sales, marketing, customer support, and inventory management. </div>
</div></div><div itemscope itemprop="mainEntity" itemtype="https://schema.org/Question"><h3 itemprop="name">What are the disadvantages of Zoho CRM?</h3><div itemscope itemprop="acceptedAnswer" itemtype="https://schema.org/Answer"><div itemprop="text"> Some of the disadvantages of Zoho CRM include limited scalability for larger enterprises, limited integration options with other business tools, and a learning curve for some users. </div>
</div></div><div itemscope itemprop="mainEntity" itemtype="https://schema.org/Question"><h3 itemprop="name">What are the 3 types of CRM?</h3><div itemscope itemprop="acceptedAnswer" itemtype="https://schema.org/Answer"><div itemprop="text"> The 3 types of CRM are operational CRM, analytical CRM, and collaborative CRM. Operational CRM focuses on automating and streamlining business processes, analytical CRM provides insights into customer behavior and preferences, and collaborative CRM facilitates communication and collaboration between teams and customers. </div>
</div></div><div itemscope itemprop="mainEntity" itemtype="https://schema.org/Question"><h3 itemprop="name">Is Zoho using SAP?</h3><div itemscope itemprop="acceptedAnswer" itemtype="https://schema.org/Answer"><div itemprop="text"> No, Zoho is not using SAP. Zoho is an independent company that develops its own suite of business and productivity tools, including Zoho CRM. </div>
</div></div><div itemscope itemprop="mainEntity" itemtype="https://schema.org/Question"><h3 itemprop="name">Is Zoho completely free?</h3><div itemscope itemprop="acceptedAnswer" itemtype="https://schema.org/Answer"><div itemprop="text"> No, Zoho CRM is not completely free. While Zoho offers a free basic plan, more advanced features and higher user limits are available with paid plans. </div>
</div></div><div itemprop="mainEntity" itemscope itemtype="https://schema.org/Question"><h3 itemprop="name">Does Zoho use SQL?</h3><div itemscope itemprop="acceptedAnswer" itemtype="https://schema.org/Answer"><div itemprop="text"> Yes, Zoho uses SQL (Structured Query Language) to store and manage its data in the database. SQL is a standard language for managing and manipulating relational databases. </div>
</div></div></div></div></div></div></div></div></div></div> ]]></content:encoded><pubDate>Tue, 10 Nov 2015 08:24:55 -0600</pubDate></item><item><title><![CDATA[One Zoho CRM Custom Function That Will Give You The Holly Grail]]></title><link>https://www.creatorscripts.com/blogs/post/One-Zoho-CRM-Custom-Function-That-Will-Give-You-The-Holly-Grail</link><description><![CDATA[Dive into the transformative power of custom functions in Zoho CRM. Learn about one particularly exceptional function that can revolutionize your CRM experience, offering unprecedented efficiency and insights—truly the Holy Grail of CRM customization.]]></description><content:encoded><![CDATA[<div class="zpcontent-container blogpost-container "><div data-element-id="elm_D7R1YPg4SCK-EsG5YYpDCQ" data-element-type="section" class="zpsection "><style type="text/css"></style><div class="zpcontainer-fluid zpcontainer"><div data-element-id="elm_D4kkAPO8SgmdvPL2XZOQ_w" data-element-type="row" class="zprow zprow-container zpalign-items- zpjustify-content- " data-equal-column=""><style type="text/css"></style><div data-element-id="elm_AZ9ikUGbT0Ck7ZxhZ6niXg" data-element-type="column" class="zpelem-col zpcol-12 zpcol-md-12 zpcol-sm-12 zpalign-self- "><style type="text/css"></style><div data-element-id="elm_WIf6F6g4RaOxbzDPcp1YZQ" data-element-type="image" class="zpelement zpelem-image "><style> @media (min-width: 992px) { [data-element-id="elm_WIf6F6g4RaOxbzDPcp1YZQ"] .zpimage-container figure img { width: 500px ; height: 500.00px ; } } @media (max-width: 991px) and (min-width: 768px) { [data-element-id="elm_WIf6F6g4RaOxbzDPcp1YZQ"] .zpimage-container figure img { width:500px ; height:500.00px ; } } @media (max-width: 767px) { [data-element-id="elm_WIf6F6g4RaOxbzDPcp1YZQ"] .zpimage-container figure img { width:500px ; height:500.00px ; } } [data-element-id="elm_WIf6F6g4RaOxbzDPcp1YZQ"].zpelem-image { border-radius:1px; } </style><div data-caption-color="" data-size-tablet="" data-size-mobile="" data-align="left" data-tablet-image-separate="false" data-mobile-image-separate="false" class="zpimage-container zpimage-align-left zpimage-size-medium zpimage-tablet-fallback-medium zpimage-mobile-fallback-medium hb-lightbox " data-lightbox-options="
                type:fullscreen,
                theme:dark"><figure role="none" class="zpimage-data-ref"><span class="zpimage-anchor" role="link" tabindex="0" aria-label="Open Lightbox" style="cursor:pointer;"><picture><img class="zpimage zpimage-style-none zpimage-space-none " src="/files/Untitled%20design-4.png" width="500" height="500.00" loading="lazy" size="medium" alt="Creator Scripts Holly Grail" data-lightbox="true"/></picture></span><figcaption class="zpimage-caption zpimage-caption-align-center"><span class="zpimage-caption-content"></span></figcaption></figure></div>
</div><div data-element-id="elm_UBjYyik-SfC4jhjIYS4kBA" data-element-type="text" class="zpelement zpelem-text "><style> [data-element-id="elm_UBjYyik-SfC4jhjIYS4kBA"].zpelem-text { border-radius:1px; } </style><div class="zptext zptext-align- " data-editor="true"><div><div><p><font face="Arial, Helvetica, sans-serif" size="3"><span style="font-size:18px;">C-level executives and managers are &nbsp;the first to understand the value that comes with a buttoned up workflow. Custom Functions in <a href="/zohocrm" title="Zoho CRM" rel="">Zoho CRM</a> can help with the integration of Modules. &nbsp;They make your workflow more robust and simpler, but they can also be a little overwhelming to put together sometimes.&nbsp;</span></font></p><span style="font-size:18px;"></span><p><span style="font-size:18px;"><font face="Arial, Helvetica, sans-serif" size="3"><br></font></span></p><span style="font-size:18px;"></span><p><font face="Arial, Helvetica, sans-serif" size="3"><span style="font-size:18px;">Managers need to seek and add Custom Functions that matter. This custom function will help you to map Contacts under a <a href="https://www.creatorscripts.com/zohocrm.html" title="Zoho CRM" rel="">Zoho CRM</a> Campaign with no export/import process to follow.</span></font><font face="Arial, Helvetica, sans-serif" size="3"><br></font></p><span style="font-size:18px;"></span><p><font face="Arial, Helvetica, sans-serif" size="3"><br></font><font face="Arial, Helvetica, sans-serif" size="3"><span style="font-size:18px;">If the Holly Grail of Email Marketing is delivering emails to the right contact at the right time and then be able to track the results back. Automate the process of sending Contacts to Campaigns and simplify your Campaign tracking results.&nbsp;</span></font></p><p></p><p></p></div>
<p></p><p></p></div></div></div><div data-element-id="elm_d4EeDhavudLyQttCwfa8zQ" data-element-type="divider" class="zpelement zpelem-divider "><style type="text/css"> [data-element-id="elm_d4EeDhavudLyQttCwfa8zQ"].zpelem-divider{ border-radius:1px; } </style><style></style><div class="zpdivider-container zpdivider-line zpdivider-align-center zpdivider-width100 zpdivider-line-style-solid "><div class="zpdivider-common"></div>
</div></div><div data-element-id="elm_wARgP49qTZuoz8pFskYbgg" data-element-type="text" class="zpelement zpelem-text "><style></style><div class="zptext zptext-align- " data-editor="true"><div><h3><b>Custom Function</b></h3></div></div>
</div><div data-element-id="elm_rYPa7ZC8S1qni4XU9gJSAQ" data-element-type="text" class="zpelement zpelem-text "><style></style><div class="zptext zptext-align- " data-editor="true"><div><p><span></span></p><p style="margin-bottom:15px;"><font size="3">ContactId=input.cid.toLong();</font></p><p style="margin-bottom:15px;"><span style="background-color:transparent;line-height:normal;"><font size="3">rec = zoho.crm.getRecordById(&quot;Contacts&quot;,ContactId);</font></span></p><p><font size="3">paramsmap=map();</font><span style="background-color:transparent;"><font size="3"><br></font></span><span style="background-color:transparent;"><font size="3">paramsmap.put(&quot;authtoken&quot;,&quot;yourauthotokenidgoeshere&quot;);</font></span><span style="background-color:transparent;"><font size="3"><br></font></span><font size="3">paramsmap.put(&quot;scope&quot;,&quot;crmapi&quot;);</font><font size="3"><br></font><font size="3">paramsmap.put(&quot;id&quot;,ContactId);</font><font size="3"><br></font><font size="3">paramsmap.put(&quot;relatedModule&quot;,&quot;Campaigns&quot;);associate=&quot;&lt;Campaigns&gt;&lt;row no = \&quot;1\&quot;&gt;&lt;FL val =\&quot;CAMPAIGNID\&quot; &gt;&quot; + CAMPAIGNID + &quot;&lt;/FL&gt;&lt;/row&gt;&lt;/Campaigns&gt;&quot;;</font><font size="3"><br></font><font size="3">paramsmap.put(&quot;xmlData&quot;,associate);</font><font size="3"><br></font><font size="3">url = postUrl(&quot;https://crm.zoho.com/crm/private/xml/Contacts/updateRelatedRecords&quot;,paramsmap);</font></p><div><p></p></div></div></div>
</div><div data-element-id="elm_b-hPEikUkCxV91o4atNwvg" data-element-type="divider" class="zpelement zpelem-divider "><style type="text/css"> [data-element-id="elm_b-hPEikUkCxV91o4atNwvg"].zpelem-divider{ border-radius:1px; } </style><style></style><div class="zpdivider-container zpdivider-line zpdivider-align-center zpdivider-width100 zpdivider-line-style-solid "><div class="zpdivider-common"></div>
</div></div><div data-element-id="elm_lKVmRLa_QGCC2CaIF7CNQA" data-element-type="text" class="zpelement zpelem-text "><style></style><div class="zptext zptext-align- " data-editor="true"><div><h3><font face="Arial, Helvetica, sans-serif">Need Help</font></h3></div></div>
</div><div data-element-id="elm_o1Vr-LIcTBmMmiEUTBeoTQ" data-element-type="text" class="zpelement zpelem-text "><style> [data-element-id="elm_o1Vr-LIcTBmMmiEUTBeoTQ"].zpelem-text { border-radius:1px; } </style><div class="zptext zptext-align- " data-editor="true"><div><p><span style="font-size:18px;"><font size="3">Custom functions&nbsp;can be a little overwhelming to put together sometimes. Please, do not hesitate to <a alt="contact us" href="http://www.creatorscripts.com/contact-us.html" target="_self" title="contact us">contact us</a>. You can also schedule a free 15 min discovery call to review your workflow and make sure custom functions are needed.&nbsp;</font></span></p></div>
</div></div><div data-element-id="elm_6oz-A0zcQFWLwUecKuTZtA" data-element-type="button" class="zpelement zpelem-button "><style> [data-element-id="elm_6oz-A0zcQFWLwUecKuTZtA"].zpelem-button{ border-radius:1px; } </style><div class="zpbutton-container zpbutton-align-center "><style type="text/css"></style><a class="zpbutton-wrapper zpbutton zpbutton-type-primary zpbutton-size-lg zpbutton-style-roundcorner " href="https://www.timetrade.com/book/JZ8LJ" target="_blank"><span class="zpbutton-content">Schedule Discovery Call</span></a></div>
</div><div data-element-id="elm_ucJtNeItSPHAoiWeO6FS1Q" data-element-type="divider" class="zpelement zpelem-divider "><style type="text/css"> [data-element-id="elm_ucJtNeItSPHAoiWeO6FS1Q"].zpelem-divider{ border-radius:1px; } </style><style></style><div class="zpdivider-container zpdivider-line zpdivider-align-center zpdivider-width100 zpdivider-line-style-solid "><div class="zpdivider-common"></div>
</div></div><div data-element-id="elm_wsU2HAarQMOnrzAoVOqdkw" data-element-type="text" class="zpelement zpelem-text "><style></style><div class="zptext zptext-align- " data-editor="true"><div><h3><font size="5"><b>Other Blog posts</b></font></h3></div></div>
</div><div data-element-id="elm_n6ykgKvTSX2Mq2eKi-pkfw" data-element-type="text" class="zpelement zpelem-text "><style></style><div class="zptext zptext-align- " data-editor="true"><div><p><span></span></p><ul style="font-size:22px;margin-bottom:30px;"><b></b><li style="margin-bottom:12px;margin-left:30px;"><b><a href="https://www.creatorscripts.com/blogs/post/3-unique-guides-to-Calculate-Customer-Lifetime-Value-LTV" title="3 unique guides to Calculate Customer Lifetime Value (LTV)" rel="">3 unique guides to Calculate Customer Lifetime Value (LTV)</a></b><br></li><li style="margin-bottom:12px;margin-left:30px;"><b><a href="https://www.creatorscripts.com/blogs/post/Best-online-tools-that-will-take-your-business-to-Next-Level" title="Best online tools that will take your business to the next level" rel="">Best online tools that will take your business to the next level</a></b><br></li><li style="margin-bottom:12px;margin-left:30px;"><b><a href="https://www.creatorscripts.com/blogs/post/From-Spreadsheet-to-Integrated-Management-System-in-3-weeks" title="From spreadsheet to integrated management system in 3 weeks" target="_blank" rel="">From spreadsheet to integrated management system in 3 weeks</a></b><br></li></ul><p></p></div>
</div></div><div data-element-id="elm_Wm_p0Rsyr0_gr4jn1dy4Fg" data-element-type="divider" class="zpelement zpelem-divider "><style type="text/css"> [data-element-id="elm_Wm_p0Rsyr0_gr4jn1dy4Fg"].zpelem-divider{ border-radius:1px; } </style><style></style><div class="zpdivider-container zpdivider-line zpdivider-align-center zpdivider-width100 zpdivider-line-style-solid "><div class="zpdivider-common"></div>
</div></div><div data-element-id="elm_YDHaIcH5R5I6vVjpBb5lag" data-element-type="codeSnippet" class="zpelement zpelem-codesnippet "><div class="zpsnippet-container"><div itemscope itemtype="https://schema.org/FAQPage"><div itemscope itemprop="mainEntity" itemtype="https://schema.org/Question"><h3 itemprop="name">What do you use Zoho CRM for?</h3><div itemscope itemprop="acceptedAnswer" itemtype="https://schema.org/Answer"><div itemprop="text"><a href="https://www.creatorscripts.com/zohocrm">Zoho CRM</a> is used to manage customer relationships, track sales, and streamline business processes. It helps businesses automate and streamline their sales, marketing, customer support, and inventory management processes. </div>
</div></div><div itemscope itemprop="mainEntity" itemtype="https://schema.org/Question"><h3 itemprop="name">Is Zoho owned by Google?</h3><div itemscope itemprop="acceptedAnswer" itemtype="https://schema.org/Answer"><div itemprop="text"> No, Zoho is not owned by Google. Zoho is a privately held company based in Chennai, India. </div>
</div></div><div itemscope itemprop="mainEntity" itemtype="https://schema.org/Question"><h3 itemprop="name">Who is Zoho CRM best for?</h3><div itemscope itemprop="acceptedAnswer" itemtype="https://schema.org/Answer"><div itemprop="text"> Zoho CRM is best for small to medium-sized businesses looking for a cost-effective and customizable CRM solution. It's also suitable for businesses in a variety of industries, including sales, marketing, customer support, and inventory management. </div>
</div></div><div itemscope itemprop="mainEntity" itemtype="https://schema.org/Question"><h3 itemprop="name">What are the disadvantages of Zoho CRM?</h3><div itemscope itemprop="acceptedAnswer" itemtype="https://schema.org/Answer"><div itemprop="text"> Some of the disadvantages of Zoho CRM include limited scalability for larger enterprises, limited integration options with other business tools, and a learning curve for some users. </div>
</div></div><div itemscope itemprop="mainEntity" itemtype="https://schema.org/Question"><h3 itemprop="name">What are the 3 types of CRM?</h3><div itemscope itemprop="acceptedAnswer" itemtype="https://schema.org/Answer"><div itemprop="text"> The 3 types of CRM are operational CRM, analytical CRM, and collaborative CRM. Operational CRM focuses on automating and streamlining business processes, analytical CRM provides insights into customer behavior and preferences, and collaborative CRM facilitates communication and collaboration between teams and customers. </div>
</div></div><div itemscope itemprop="mainEntity" itemtype="https://schema.org/Question"><h3 itemprop="name">Is Zoho using SAP?</h3><div itemscope itemprop="acceptedAnswer" itemtype="https://schema.org/Answer"><div itemprop="text"> No, Zoho is not using SAP. Zoho is an independent company that develops its own suite of business and productivity tools, including Zoho CRM. </div>
</div></div><div itemscope itemprop="mainEntity" itemtype="https://schema.org/Question"><h3 itemprop="name">Is Zoho completely free?</h3><div itemscope itemprop="acceptedAnswer" itemtype="https://schema.org/Answer"><div itemprop="text"> No, Zoho CRM is not completely free. While Zoho offers a free basic plan, more advanced features and higher user limits are available with paid plans. </div>
</div></div><div itemprop="mainEntity" itemscope itemtype="https://schema.org/Question"><h3 itemprop="name">Does Zoho use SQL?</h3><div itemscope itemprop="acceptedAnswer" itemtype="https://schema.org/Answer"><div itemprop="text"> Yes, Zoho uses SQL (Structured Query Language) to store and manage its data in the database. SQL is a standard language for managing and manipulating relational databases. </div>
</div></div></div></div></div></div></div></div></div></div> ]]></content:encoded><pubDate>Sat, 11 Jul 2015 17:44:29 -0500</pubDate></item><item><title><![CDATA[How to access free flow backend in Zoho CRM custom builder?]]></title><link>https://www.creatorscripts.com/blogs/post/How-to-access-free-flow-backend-in-Zoho-CRM-custom-builder</link><description><![CDATA[<img align="left" hspace="5" src="https://www.creatorscripts.com/Zoho-CRM-custom-builder.png"/>Unlock the potential of Zoho CRM with our step-by-step guide on accessing the Free Flow Backend in the Custom Builder. Discover easy, efficient methods to enhance your CRM experience and streamline your business processes.]]></description><content:encoded><![CDATA[<div class="zpcontent-container blogpost-container "><div data-element-id="elm_bwdn2laYQsSljAosYpetbw" data-element-type="section" class="zpsection "><style type="text/css"></style><div class="zpcontainer-fluid zpcontainer"><div data-element-id="elm_1hKEUQb_TX6CaXda-xBDtg" data-element-type="row" class="zprow zprow-container zpalign-items- zpjustify-content- " data-equal-column=""><style type="text/css"></style><div data-element-id="elm_V7Bqa8glRNuVSJsuzVUv2Q" data-element-type="column" class="zpelem-col zpcol-12 zpcol-md-12 zpcol-sm-12 zpalign-self- "><style type="text/css"></style><div data-element-id="elm_2iFZ3pVTRgCd5TGiDREv1w" data-element-type="text" class="zpelement zpelem-text "><style></style><div class="zptext zptext-align- " data-editor="true"><div><p><font size="3">If you are familiar with<a alt="Zoho Creator's" href="http://www.creatorscripts.com/creator.html" target="_self" title="Zoho Creator's"> Zoho Creator's</a> backend script builder you are aware of the 2 options you have to write your logic. Script Builder and Free flow. The second having the most flexibility for copy &amp; paste code and write logic faster if you are already familiar with deluge scripts.</font></p><p><font size="3"><br></font></p><p><font size="3">In <a alt="Zoho CRM" href="http://www.creatorscripts.com" target="_self" title="Zoho CRM">Zoho CRM</a> when you attempt to write a custom function the only option available is Script Builder. This option increases your developers time to produce faster and robust code = higher costs and if you are learning how to write these functions it will be a little cumbersome just to navigate through all the multiple screens Zoho has configured for the user = decreasing your chances for success.</font></p><p><font size="3"><br></font></p><p><font size="3">Fortunately, there is a way to access the free flow backend screen in <a alt="Zoho CRM" href="http://www.creatorscripts.com" target="_self" title="Zoho CRM">Zoho CRM</a>. It does require a little bit of technical maneuvering, but nothing as fancy as <a alt="Lady Gaga's" href="http://www.amazon.com/gp/product/B001IXSU8M/ref=as_li_tl?ie=UTF8&amp;camp=1789&amp;creative=390957&amp;creativeASIN=B001IXSU8M&amp;linkCode=as2&amp;tag=ehocom-20&amp;linkId=MB7L7U73B7OGDQ4D" target="_self" title="Lady Gaga's">Lady Gaga's</a> dresses...so buckle up and take some notes.</font></p><p><font size="3"><br></font></p><p><font size="3">1. Open you custom function configuration screen.</font></p><p><font size="3">2. Edit the Function</font></p><p><font size="3">3. Right click on the white empty configuration screen and choose &quot;Inspect Element&quot;</font></p><p><font size="3">4. If you are on a Mac the right click = control click.</font></p><p><font size="3">5. You will see a new window displaying at the bottom of your screen with your CRM application code.</font></p><p><font size="3">6.Search (scroll up) for the url referring to <span><span>https://creator.zoho.com/functions.do? </span></span></font></p><p><font size="3">7. Copy the script on a txt note and extract the url up until the workflowLinkID. <span><span>https://creator.zoho.com/functions.do?sharedBy=ZS_71423467&amp;workflowLinkID=18474398KDJFSGJDSGKJS</span></span></font></p><p><font size="3">8. Paste the url on a new browser window and bingo.</font></p><p><font size="3">9. Do not forget to save the scripts you add on this window.</font></p><p><font size="3">10. Go back to your CRM and test.</font></p><p><br></p><p><img src="/files/freeflow.png" width="575px">&nbsp;&nbsp;<br></p></div></div>
</div><div data-element-id="elm_UOBk7-R3_GVD82If_I443Q" data-element-type="dividerIcon" class="zpelement zpelem-dividericon "><style type="text/css"> [data-element-id="elm_UOBk7-R3_GVD82If_I443Q"].zpelem-dividericon{ border-radius:1px; } </style><style></style><div class="zpdivider-container zpdivider-icon zpdivider-align-center zpdivider-width100 zpdivider-line-style-solid zpdivider-icon-size-md zpdivider-style-none "><div class="zpdivider-common"><svg viewBox="0 0 448 512" height="448" width="512" xmlns="http://www.w3.org/2000/svg"><path d="M448 73.143v45.714C448 159.143 347.667 192 224 192S0 159.143 0 118.857V73.143C0 32.857 100.333 0 224 0s224 32.857 224 73.143zM448 176v102.857C448 319.143 347.667 352 224 352S0 319.143 0 278.857V176c48.125 33.143 136.208 48.572 224 48.572S399.874 209.143 448 176zm0 160v102.857C448 479.143 347.667 512 224 512S0 479.143 0 438.857V336c48.125 33.143 136.208 48.572 224 48.572S399.874 369.143 448 336z"></path></svg></div>
</div></div><div data-element-id="elm_M6JYAfzVSj2jiFQfr7f8iA" data-element-type="codeSnippet" class="zpelement zpelem-codesnippet "><div class="zpsnippet-container"><div class="featured-posts"><h2>🌟 Featured Zoho CRM Blog Posts</h2><ul><li><a href="https://www.creatorscripts.com/blogs/post/How-to-Enhance-Your-Sales-Process-for-Better-Conversions-with-Zoho-CRM">How to Enhance Your Sales Process for Better Conversions with Zoho CRM</a></li><li><a href="https://www.creatorscripts.com/blogs/post/The-Top-5-CRM-Data-Scrubbing-Tools-You-Need-to-Know-About">The Top 5 CRM Data Scrubbing Tools You Need to Know About</a></li><li><a href="https://www.creatorscripts.com/blogs/post/Enhance-your-Zoho-CRM-Lead-information-with-Email-Intelligence">Enhance your data with Email Intelligence from TowerData API</a></li><li><a href="https://www.creatorscripts.com/blogs/post/6-reasons-why-a-route-planner-is-important-for-optimizing-field-sales">6 reasons why a route planner is important for optimizing field sales</a></li><li><a href="https://www.creatorscripts.com/blogs/post/How-Zoho-CRM-became-the-worlds-favorite-CRM-software">How Zoho CRM became the world’s favorite CRM software</a></li><li><a href="https://chat.openai.com/g/g-q8VZSV5pH-free-crm-checklist">FREE CRM Checklist Your Interactive Guide to Creating the Perfect CRM Checklist</a></li></ul></div>
</div></div><div data-element-id="elm_ZALrRQ2H0vSRsyvHVxw66w" data-element-type="divider" class="zpelement zpelem-divider "><style type="text/css"> [data-element-id="elm_ZALrRQ2H0vSRsyvHVxw66w"].zpelem-divider{ border-radius:1px; } </style><style></style><div class="zpdivider-container zpdivider-line zpdivider-align-center zpdivider-width100 zpdivider-line-style-solid "><div class="zpdivider-common"></div>
</div></div><div data-element-id="elm_5fm1oyy5P-OB8Mo5LygXmQ" data-element-type="codeSnippet" class="zpelement zpelem-codesnippet "><div class="zpsnippet-container"><div itemscope itemtype="https://schema.org/FAQPage"><div itemscope itemprop="mainEntity" itemtype="https://schema.org/Question"><h3 itemprop="name">What do you use Zoho CRM for?</h3><div itemscope itemprop="acceptedAnswer" itemtype="https://schema.org/Answer"><div itemprop="text"><a href="https://www.creatorscripts.com/zohocrm">Zoho CRM</a> is used to manage customer relationships, track sales, and streamline business processes. It helps businesses automate and streamline their sales, marketing, customer support, and inventory management processes. </div>
</div></div><div itemscope itemprop="mainEntity" itemtype="https://schema.org/Question"><h3 itemprop="name">Is Zoho owned by Google?</h3><div itemscope itemprop="acceptedAnswer" itemtype="https://schema.org/Answer"><div itemprop="text"> No, Zoho is not owned by Google. Zoho is a privately held company based in Chennai, India. </div>
</div></div><div itemscope itemprop="mainEntity" itemtype="https://schema.org/Question"><h3 itemprop="name">Who is Zoho CRM best for?</h3><div itemscope itemprop="acceptedAnswer" itemtype="https://schema.org/Answer"><div itemprop="text"> Zoho CRM is best for small to medium-sized businesses looking for a cost-effective and customizable CRM solution. It's also suitable for businesses in a variety of industries, including sales, marketing, customer support, and inventory management. </div>
</div></div><div itemscope itemprop="mainEntity" itemtype="https://schema.org/Question"><h3 itemprop="name">What are the disadvantages of Zoho CRM?</h3><div itemscope itemprop="acceptedAnswer" itemtype="https://schema.org/Answer"><div itemprop="text"> Some of the disadvantages of Zoho CRM include limited scalability for larger enterprises, limited integration options with other business tools, and a learning curve for some users. </div>
</div></div><div itemscope itemprop="mainEntity" itemtype="https://schema.org/Question"><h3 itemprop="name">What are the 3 types of CRM?</h3><div itemscope itemprop="acceptedAnswer" itemtype="https://schema.org/Answer"><div itemprop="text"> The 3 types of CRM are operational CRM, analytical CRM, and collaborative CRM. Operational CRM focuses on automating and streamlining business processes, analytical CRM provides insights into customer behavior and preferences, and collaborative CRM facilitates communication and collaboration between teams and customers. </div>
</div></div><div itemscope itemprop="mainEntity" itemtype="https://schema.org/Question"><h3 itemprop="name">Is Zoho using SAP?</h3><div itemscope itemprop="acceptedAnswer" itemtype="https://schema.org/Answer"><div itemprop="text"> No, Zoho is not using SAP. Zoho is an independent company that develops its own suite of business and productivity tools, including Zoho CRM. </div>
</div></div><div itemscope itemprop="mainEntity" itemtype="https://schema.org/Question"><h3 itemprop="name">Is Zoho completely free?</h3><div itemscope itemprop="acceptedAnswer" itemtype="https://schema.org/Answer"><div itemprop="text"> No, Zoho CRM is not completely free. While Zoho offers a free basic plan, more advanced features and higher user limits are available with paid plans. </div>
</div></div><div itemprop="mainEntity" itemscope itemtype="https://schema.org/Question"><h3 itemprop="name">Does Zoho use SQL?</h3><div itemscope itemprop="acceptedAnswer" itemtype="https://schema.org/Answer"><div itemprop="text"> Yes, Zoho uses SQL (Structured Query Language) to store and manage its data in the database. SQL is a standard language for managing and manipulating relational databases. </div>
</div></div></div></div></div><div data-element-id="elm_eMbk9GrcQOVB3N8xADPCdg" itemscope="" data-element-type="socialprofile" class="zpelement zpelem-socialprofile" data-element-id="elm_eMbk9GrcQOVB3N8xADPCdg"><style type="text/css"> [data-element-id="elm_eMbk9GrcQOVB3N8xADPCdg"].zpelem-socialprofile{ border-radius:1px; } </style><div data-socialprofile_container class="zpsocialprofile-container zpsocialprofile-size-md zpsocialprofile-halign-center zpsocialprofile-style-none zpsocialprofile-type-color "><a href="https://www.youtube.com/@Creatorscripts" class="zpsocialprofile-wrapper zpsocialprofile-youtube" target="_blank" aria-label="YouTube"><svg aria-hidden="true" class="zpsocialprofile" viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg"><path d="M32.786 10l.106.001.392.002c1.94.009 6.896.05 11.873.237l.765.03c4.589.187 9.063.504 11.068 1.04 2.71.73 4.84 2.86 5.56 5.56 1.204 4.505 1.301 13.515 1.31 14.939v.382c-.009 1.424-.106 10.434-1.31 14.939a7.885 7.885 0 0 1-5.56 5.56c-4.455 1.19-21.107 1.3-24.098 1.309h-.923c-2.99-.01-19.635-.118-24.099-1.309a7.885 7.885 0 0 1-5.56-5.56c-.401-1.502-.68-3.504-.873-5.559l-.058-.65c-.314-3.688-.368-7.394-.377-8.552L1 32.124v-.194-.054l.002-.245c.009-1.158.063-4.864.377-8.552l.058-.65c.193-2.055.472-4.057.873-5.559a7.885 7.885 0 0 1 5.56-5.56c4.296-1.146 19.878-1.29 23.706-1.307L31.97 10h.105zM26.15 22.57v18.86L42.48 32l-16.33-9.43z"/></svg></a><a href="https://www.instagram.com/leverage_zoho/" class="zpsocialprofile-wrapper zpsocialprofile-instagram" target="_blank" aria-label="Instagram"><svg aria-hidden="true" class="zpsocialprofile" viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg"><defs><linearGradient x1="72.5875139%" y1="0%" x2="28.281045%" y2="106.524963%" id="linearGradient-1"><stop stop-color="#9A1DF1" offset="0%"></stop><stop stop-color="#ED1E64" offset="49.3618943%"></stop><stop stop-color="#FFD002" offset="100%"></stop></linearGradient><path d="M18.7470755,0.221595251 C15.3422244,0.382299247 13.0166948,0.927668835 10.9845413,1.72394402 C8.8808805,2.5440464 7.09761014,3.64310557 5.32364538,5.42434073 C3.54758782,7.20661909 2.45687425,8.99304465 1.64301187,11.0988238 C0.855031083,13.1361614 0.321066295,15.4627981 0.170711099,18.8697484 C0.0214311023,22.2829708 -0.012802497,23.3716107 0.00383750267,32.0611721 C0.0204135023,40.7496967 0.0587623014,41.8403975 0.221527098,45.254631 C0.384285494,48.6585158 0.927619882,50.9830597 1.72388866,53.0162565 C2.54502785,55.1199428 3.64296062,56.9022276 5.42521338,58.6772547 C7.20645494,60.4522883 8.9939045,61.5419779 11.1006629,62.3569282 C13.1359204,63.1438722 15.46353,63.6799042 18.8694627,63.8291842 C22.2826082,63.9795458 23.3722466,64.0127042 32.0596384,63.9961282 C40.7511454,63.9795458 41.8408478,63.941165 45.2539933,63.7794178 C48.6588444,63.616653 50.9822875,63.0712898 53.0165275,62.2770946 C55.1201883,61.4538563 56.9034586,60.3579395 58.6774234,58.5756547 C60.4513945,56.7943876 61.5421081,55.0069188 62.3560345,52.9001285 C63.1440153,50.8648453 63.6800089,48.5372038 63.8282777,45.1333446 C63.9775577,41.7180679 64.0128665,40.6273351 63.9962265,31.9388169 C63.9796441,23.2492555 63.9402841,22.1606092 63.7785369,18.7484684 C63.6167897,15.3414861 63.0714329,13.0179854 62.2761753,10.9837454 C61.4540249,8.88005905 60.3571033,7.0987919 58.5758618,5.32274074 C56.7946202,3.54875038 55.0071771,2.4559312 52.9004123,1.64411682 C50.8641371,0.856129637 48.5375324,0.319048049 45.1316061,0.171822452 C41.7184606,0.0204496555 40.6288222,-0.0127087437 31.9383264,0.00387365592 C23.2499298,0.0204560555 22.160285,0.0577936547 18.7470755,0.221595251 M19.1203747,58.0696835 C16.0006051,57.9338499 14.3064996,57.4154436 13.1774308,56.9810372 C11.682346,56.4024772 10.6154853,55.7088452 9.49261809,54.5942852 C8.37184371,53.4755524 7.67612533,52.4117765 7.09241974,50.9198021 C6.65381495,49.7906885 6.12611576,48.0986182 5.97993337,44.9788358 C5.82129017,41.6060871 5.78502777,40.5941383 5.76945657,32.0497481 C5.75287417,23.5074443 5.78394617,22.4954955 5.93120377,19.1196428 C6.06491897,16.0019213 6.58648055,14.3057037 7.01983094,13.1776334 C7.59834613,11.6804686 8.28988531,10.6156558 9.40655089,9.49280784 C10.5252389,8.36992787 11.5889956,7.67628948 13.081994,7.0925775 C14.2100452,6.65191191 15.9021283,6.12831512 19.0208227,5.98007832 C22.3956194,5.82038552 23.4064738,5.78618392 31.9486944,5.76960153 C40.4929438,5.75298713 41.5048734,5.78307992 44.8807453,5.93134872 C47.9983644,6.06715032 49.6945564,6.58350231 50.8216028,7.0199951 C52.3176987,7.59852308 53.3845595,8.28801427 54.5064091,9.40674704 C55.628201,10.5254798 56.323913,11.5871694 56.9076186,13.0832846 C57.3482458,14.2082189 57.8718362,15.9023821 58.0190938,19.0201036 C58.1797594,22.3949387 58.2160858,23.4068555 58.231593,31.9491913 C58.2481754,40.4935879 58.2171034,41.5054983 58.0688346,44.8792902 C57.933033,47.9990726 57.4156442,49.6942725 56.9802074,50.8243973 C56.4016858,52.3184581 55.710089,53.3853316 54.5924123,54.5082116 C53.4747995,55.6269444 52.4110427,56.3246916 50.9169691,56.9084356 C49.7910044,57.348026 48.0968988,57.8726723 44.9802333,58.0209411 C41.6055006,58.1795587 40.5945822,58.2158467 32.0492576,58.2314179 C23.507037,58.2480131 22.4961826,58.2158659 19.1203747,58.0696835 M45.2073489,14.8946189 C45.2114717,17.0138765 46.9346204,18.729806 49.053846,18.7256663 C51.1740891,18.7215116 52.8900251,16.9993549 52.8869253,14.8800973 C52.8827483,12.7608398 51.1595931,11.043899 49.03935,11.0480387 C46.9191132,11.052187 45.2031773,12.7753614 45.2073489,14.8946189 M15.5693094,32.0310857 C15.5869347,41.1063495 22.957565,48.4469894 32.0305952,48.4293954 C41.1046942,48.4117446 48.4493852,41.0430983 48.4318231,31.9678665 C48.414134,22.8957323 41.0424926,15.5509133 31.967376,15.5685072 C22.8942818,15.5861645 15.5516836,22.9579403 15.5693094,32.0310857 M21.3328633,32.0196937 C21.3225058,26.1295435 26.0897377,21.344654 31.978768,21.3342528 C37.868867,21.3228812 42.6547101,26.0880651 42.6661227,31.9792585 C42.6775581,37.870452 37.9103198,42.6542983 32.0192032,42.6657427 C26.1301793,42.6771143 21.3442722,37.9108872 21.3328633,32.0196937" id="path-2"></path></defs><g stroke="none" stroke-width="1" fill-rule="evenodd"><mask fill="white"><use xlink:href="#path-2"></use></mask><use class="cl-path-inherit" fill="url(#linearGradient-1)" xlink:href="#path-2"></use></g></svg></a><a href="https://twitter.com/CreatorScripts" class="zpsocialprofile-wrapper zpsocialprofile-twitter" target="_blank" aria-label="X"><svg aria-hidden="true" class="zpsocialprofile" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><path fill-rule="nonzero" d="M37.97 27.1 61.283 0h-5.525L35.516 23.53 19.348 0H.7l24.449 35.582L.7 64h5.525l21.377-24.849L44.676 64h18.648L37.968 27.1h.002Zm-7.567 8.795-2.477-3.543L8.216 4.16h8.485l15.906 22.753 2.478 3.543L55.76 60.03h-8.486L30.403 35.897v-.002Z"/></svg></a><a href="https://www.linkedin.com/company/creator-scripts" class="zpsocialprofile-wrapper zpsocialprofile-linkedin" target="_blank" aria-label="LinkedIn"><svg aria-hidden="true" class="zpsocialprofile" viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg"><path d="M64 4.706v54.588A4.706 4.706 0 0 1 59.294 64H4.706A4.706 4.706 0 0 1 0 59.294V4.706A4.706 4.706 0 0 1 4.706 0h54.588A4.706 4.706 0 0 1 64 4.706zM18.824 24.47H9.412v30.117h9.412V24.471zm.847-10.353a5.421 5.421 0 0 0-5.384-5.46h-.17a5.459 5.459 0 0 0 0 10.918 5.421 5.421 0 0 0 5.554-5.289v-.17zm34.917 22.174c0-9.054-5.76-12.574-11.482-12.574a10.73 10.73 0 0 0-9.525 4.856h-.263v-4.103H24.47v30.117h9.411V38.57a6.25 6.25 0 0 1 5.647-6.738h.358c2.993 0 5.214 1.882 5.214 6.625v16.132h9.412l.075-18.296z"/></svg></a><a href="https://www.facebook.com/Creatorscripts" class="zpsocialprofile-wrapper zpsocialprofile-facebook" target="_blank" aria-label="Facebook"><svg aria-hidden="true" class="zpsocialprofile" viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg"><path d="M64,32.1989637 C64,14.4248705 49.6642636,0 32,0 C14.3357364,0 -8.52651283e-14,14.4248705 -8.52651283e-14,32.1989637 C-8.52651283e-14,48.2818653 11.6992791,61.6124352 27.0236869,64 L27.0236869,41.4839378 L18.8506694,41.4839378 L18.8506694,32.1989637 L27.0236869,32.1989637 L27.0236869,25.1025907 C27.0236869,17.0445596 31.76931,12.5678756 39.0854789,12.5678756 C42.5787848,12.5678756 46.2039135,13.2310881 46.2039135,13.2310881 L46.2039135,21.0901554 L42.1833162,21.0901554 C38.1956746,21.0901554 36.9433574,23.6103627 36.9433574,26.1305699 L36.9433574,32.1658031 L45.8414006,32.1658031 L44.4243048,41.4507772 L36.9433574,41.4507772 L36.9433574,63.9668394 C52.3007209,61.6124352 64,48.2818653 64,32.1989637 Z"></path></svg></a><a href="https://www.pinterest.com/zohocreator/" class="zpsocialprofile-wrapper zpsocialprofile-pinterest" target="_blank" aria-label="Pinterest"><svg aria-hidden="true" class="zpsocialprofile" viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg"><path d="M0,31.9999808 C0,45.6613124 8.56263559,57.3253073 20.6133183,61.9146428 C20.3200192,59.4159559 20.007981,55.2959449 20.6799807,52.4053478 C21.2586684,49.9199473 24.4159918,36.570654 24.4159918,36.570654 C24.4159918,36.570654 23.4639794,34.664018 23.4639794,31.8400065 C23.4639794,27.4133332 26.0293287,24.1066339 29.2266649,24.1066339 C31.9466893,24.1066339 33.2586631,26.1466714 33.2586631,28.5919823 C33.2586631,31.3252931 31.5173007,35.4106673 30.6186643,39.1999776 C29.869327,42.3706642 32.2106508,44.9572871 35.3360254,44.9572871 C40.9973349,44.9572871 45.3519698,38.9866273 45.3519698,30.3679815 C45.3519698,22.7386729 39.869297,17.4079872 32.0426893,17.4079872 C22.9812916,17.4079872 17.661358,24.2053218 17.661358,31.2319811 C17.661358,33.9706679 18.7146695,36.9039658 20.0320193,38.5013283 C20.2906816,38.8186658 20.3306944,39.0933025 20.2533568,39.4160159 C20.010669,40.4240155 19.471994,42.5866257 19.3680068,43.0293007 C19.2266949,43.6106765 18.9066694,43.736014 18.3013321,43.4533134 C14.3226331,41.6026646 11.8373094,35.7866799 11.8373094,31.1146308 C11.8373094,21.0639728 19.1359941,11.8373017 32.8826505,11.8373017 C43.9333208,11.8373017 52.5226291,19.7119862 52.5226291,30.2346568 C52.5226291,41.2132887 45.6026449,50.0506609 35.9919739,50.0506609 C32.7626889,50.0506609 29.7306263,48.3706616 28.6906779,46.3892993 C28.6906779,46.3892993 27.0933154,52.4746214 26.7066276,53.9626207 C25.9546791,56.8532947 23.8693297,60.5119683 22.5760182,62.5893305 C25.5573161,63.5066293 28.7200155,64 31.9999885,64 C49.6719679,64 64,49.6719602 64,31.9999808 C64,14.3280014 49.6719679,7.10542736e-15 31.9999885,7.10542736e-15 C14.3280091,7.10542736e-15 0,14.3280014 0,31.9999808"></path></svg></a><a href="mailto:creatorscripts@zoho.com" class="zpsocialprofile-wrapper zpsocialprofile-email" target="_blank" aria-label="Email"><svg aria-hidden="true" class="zpsocialprofile" xmlns="http://www.w3.org/2000/svg" width="64" height="64" viewBox="0 0 64 64"><path d="M58.4 8c3 0 5.6 2.5 5.6 5.6v37.7c0 3-2.5 5.6-5.6 5.6H5.6c-3 0-5.6-2.5-5.6-5.6V13.6C0 10.6 2.5 8 5.6 8h52.8zM43.2 34.9l-3.5 3.4c-2.2 2.2-5 3.4-7.9 3.4-3 0-5.7-1.2-7.9-3.4L20.4 35 3.7 51.6c.2.9.9 1.4 1.8 1.4h52.8c.8 0 1.5-.5 1.7-1.3L43.2 35zm17-17L45.6 32.3l14.4 14.4V18zM3.5 18v28.6L18 32.3 3.6 18zm54.7-6.4H5.5c-1 0-1.6.6-1.8 1.4l22.8 22.7c2.9 2.9 7.8 2.9 10.8 0L60 12.9c-.2-.8-.9-1.3-1.7-1.3z"/></svg></a></div>
</div></div></div></div></div></div> ]]></content:encoded><pubDate>Sat, 16 Aug 2014 18:40:09 -0500</pubDate></item><item><title><![CDATA[How to Round Numbers on .25 Increments in Zoho Creator]]></title><link>https://www.creatorscripts.com/blogs/post/How-to-Round-Numbers-on-25-Increments-in-Zoho-Creator</link><description><![CDATA[Sometimes you require a custom Rounding function to meet your needs. For example, you may very well want to track employee hours, but need to be consi ]]></description><content:encoded><![CDATA[<div class="zpcontent-container blogpost-container "><div data-element-id="elm_i07Q-elURjGYWoEC6A4wIw" data-element-type="section" class="zpsection "><style type="text/css"></style><div class="zpcontainer-fluid zpcontainer"><div data-element-id="elm_1GID_ywvR2e5XIHjHsAgxA" data-element-type="row" class="zprow zprow-container zpalign-items- zpjustify-content- " data-equal-column=""><style type="text/css"></style><div data-element-id="elm_b-FcrEUwRvuwJVqgTjFzoA" data-element-type="column" class="zpelem-col zpcol-12 zpcol-md-12 zpcol-sm-12 zpalign-self- "><style type="text/css"></style><div data-element-id="elm_a1lH6pSGSsCqBWRMK8Bf-Q" data-element-type="text" class="zpelement zpelem-text "><style></style><div class="zptext zptext-align- " data-editor="true"><div><div dir="ltr" style="text-align:left;"><br>Sometimes you require a custom Rounding function to meet your needs. For example, you may very well want to track employee hours, but need to be consistent and round each decimal entries.<br><br>The script below allows you to round in increments of .25 so if you were entering hours each .25 = 15 minutes on the hour.<br><br>float Calculations.FrankUp(float Hours)<br>{<br>   HI = input.Hours.toLong();<br>    Gap = (input.Hours  -  HI).round(2);<br>    if ((Gap  &lt;=  0.25)  &amp;&amp;  (Gap  &gt;  0.0))<br>    {<br>        return (HI  +  0.25).round(2);<br>    }<br>    else if ((Gap  &lt;=  0.5)  &amp;&amp;  (Gap  &gt;  0.25))<br>    {<br>        return (HI  +  0.5).round(2);<br>    }<br>    else if ((Gap  &lt;=  0.75)  &amp;&amp;  (Gap  &gt;  0.5))<br>    {<br>        return (HI  +  0.75).round(2);<br>    }<br>    else if (Gap  &gt;  0.75)<br>    {<br>        return (HI  +  1.0).round(2);<br>    }<br>    else if (Gap  ==  0)<br>    {<br>        return (HI  +  0.0);<br>    }<br>    return Gap;<br>}<br><div><br></div><br><br></div></div></div>
</div></div></div></div></div></div> ]]></content:encoded><pubDate>Wed, 16 Apr 2014 14:47:00 -0500</pubDate></item><item><title><![CDATA[How to calculate the elapsed time between two Date-Time fields]]></title><link>https://www.creatorscripts.com/blogs/post/How-to-calculate-the-elapsed-time-between-two-Date-Time-fields</link><description><![CDATA[Learn how to calculate the time elapsed between two Date-Time fields in Zoho Creator. Follow our step-by-step guide for efficient time tracking and data analysis. #ZohoCreator #DateTimeCalculation #TimeTracking]]></description><content:encoded><![CDATA[<div class="zpcontent-container blogpost-container "><div data-element-id="elm_IE5OnlntTPOmhSUawfOkuw" data-element-type="section" class="zpsection "><style type="text/css"></style><div class="zpcontainer-fluid zpcontainer"><div data-element-id="elm_FS3ktOQURtO0mAOs4scEOQ" data-element-type="row" class="zprow zprow-container zpalign-items- zpjustify-content- " data-equal-column=""><style type="text/css"></style><div data-element-id="elm_UNqkGx1lSpWz0l4NSrtLdQ" data-element-type="column" class="zpelem-col zpcol-12 zpcol-md-12 zpcol-sm-12 zpalign-self- "><style type="text/css"></style><div data-element-id="elm_c_1BNHKMQw6osw2ERdSsvg" data-element-type="text" class="zpelement zpelem-text "><style> [data-element-id="elm_c_1BNHKMQw6osw2ERdSsvg"].zpelem-text { border-radius:1px; } </style><div class="zptext zptext-align- " data-editor="true"><div dir="ltr" style="text-align:left;"><br><div class="separator" style="clear:both;text-align:left;"><a href="http://4.bp.blogspot.com/-qwI6myabuTo/UfGGH89zerI/AAAAAAAAt84/mOWznKkak7s/s1600/Zoho%2BCreator%C2%A0%2B%2BElapsed%2BHours.png" style="margin-left:1em;margin-right:1em;"><img border="0" height="313" src="/files/blog/Zoho-Creator--Elapsed-Hours.png" width="640"></a></div><div class="separator" style="clear:both;text-align:left;"><br></div><br>I have found several functions, scripts and blogs providing different methods to calculate the elapsed time between two date-time fields. However, most of them are hard to understand or involve a higher coding of deluge scripting to obtain the desired result.<br><br>Below you will find a solution in 3 lines of code if the Dates belong to the same day<br><br>Hr=(input.End_Time.getHour() - &nbsp;input.Start_Time.getHour());<br>Min=(input.End_Time.getMinutes() &nbsp;/ &nbsp;60 &nbsp;- &nbsp;input.Start_Time.getMinutes() &nbsp;/ &nbsp;60);<br>Elapsed=(Hr &nbsp;+ &nbsp;Min);<br><br>Or 7 lines of code If the Dates vary in Days ...<br><br>if(input.Start_Time.getDayOfWeek() &nbsp;== &nbsp;input.End_Time.getDayOfWeek())<br>{<br><span class="Apple-tab-span" style="white-space:pre;"></span>Hr=(input.End_Time.getHour() &nbsp;- &nbsp;input.Start_Time.getHour());<br><span class="Apple-tab-span" style="white-space:pre;"></span>Min=(input.End_Time.getMinutes() &nbsp;/ &nbsp;60 &nbsp;- &nbsp;input.Start_Time.getMinutes() &nbsp;/ &nbsp;60);<br><span class="Apple-tab-span" style="white-space:pre;"></span>Elapsed=(Hr &nbsp;+ &nbsp;Min);<br>}<br>else if(input.Start_Time.getDayOfWeek() &nbsp;&lt; &nbsp;input.End_Time.getDayOfWeek())<br>{<br><span class="Apple-tab-span" style="white-space:pre;"></span>Hr=(input.End_Time.getHour() &nbsp;- &nbsp;input.Start_Time.getHour());<br><span class="Apple-tab-span" style="white-space:pre;"></span>Min=(input.End_Time.getMinutes() &nbsp;/ &nbsp;60 &nbsp;- &nbsp;input.Start_Time.getMinutes() &nbsp;/ &nbsp;60);<br><span class="Apple-tab-span" style="white-space:pre;"></span>Day=((input.End_Time.getDayOfYear() &nbsp;- &nbsp;input.Start_Time.getDayOfYear()) &nbsp;* &nbsp;24);<br><span class="Apple-tab-span" style="white-space:pre;"></span>Elapsed=(Day &nbsp;+ &nbsp;Hr &nbsp;+ &nbsp;Min);<br>}<br><br>In the following link you will be able to test the script on a live and free application.&nbsp;<a href="https://creator.zoho.com/fmriorum/elapsed-hours/#" target="_blank">Elapsed Time</a><br><br>You may locate the following code in the following places: On user input, On Add On Success, or On Edit On Success<br><br>Hope it helps....enjoy.</div></div>
</div><div data-element-id="elm_e6Bm79-HFMkB9BEyo46SOA" data-element-type="button" class="zpelement zpelem-button "><style> [data-element-id="elm_e6Bm79-HFMkB9BEyo46SOA"].zpelem-button{ border-radius:1px; } </style><div class="zpbutton-container zpbutton-align-center "><style type="text/css"></style><a class="zpbutton-wrapper zpbutton zpbutton-type-primary zpbutton-size-md zpbutton-style-none " href="/zohocreator" title="Zoho Creator"><span class="zpbutton-content">Create Your Account</span></a></div>
</div><div data-element-id="elm_sqjzJghwJF5vykCPcSKeSw" data-element-type="divider" class="zpelement zpelem-divider "><style type="text/css"> [data-element-id="elm_sqjzJghwJF5vykCPcSKeSw"].zpelem-divider{ border-radius:1px; } </style><style></style><div class="zpdivider-container zpdivider-line zpdivider-align-center zpdivider-width100 zpdivider-line-style-solid "><div class="zpdivider-common"></div>
</div></div><div data-element-id="elm_T785KKJdP7NCuUCar8E3Mw" data-element-type="text" class="zpelement zpelem-text "><style> [data-element-id="elm_T785KKJdP7NCuUCar8E3Mw"].zpelem-text { border-radius:1px; } </style><div class="zptext zptext-align-left " data-editor="true"><p><span style="color:inherit;font-size:18px;">Discover a treasure trove of valuable content related to&nbsp;<a href="https://www.creatorscripts.com/blogs/zoho-creator/" title="Zoho Creator!" rel="">Zoho Creator</a><a href="https://www.creatorscripts.com/blogs/zoho-creator/" title="Zoho Creator!" rel="">!</a> If you found this post insightful, you'll love delving into our collection of informative articles covering various aspects of Zoho Creator. From advanced techniques to workflow optimization, our blog offers a wealth of knowledge to help you master the platform. Keep exploring and unlock the full potential of Zoho Creator for your business needs.&nbsp;<a href="https://www.creatorscripts.com/blogs/zoho-creator/" title="Zoho Creator" rel="">Happy Reading!</a></span><br></p></div>
</div><div data-element-id="elm_m1XF0T8WEvAHJypGHF6X6A" data-element-type="divider" class="zpelement zpelem-divider "><style type="text/css"> [data-element-id="elm_m1XF0T8WEvAHJypGHF6X6A"].zpelem-divider{ border-radius:1px; } </style><style></style><div class="zpdivider-container zpdivider-line zpdivider-align-center zpdivider-width100 zpdivider-line-style-solid "><div class="zpdivider-common"></div>
</div></div><div data-element-id="elm_U5YFo4LjHjO45OlK72HkiQ" data-element-type="codeSnippet" class="zpelement zpelem-codesnippet "><div class="zpsnippet-container"><div itemscope itemtype="https://schema.org/FAQPage"><div itemprop="mainEntity" itemscope itemtype="https://schema.org/Question"><h2 itemprop="name">How do I create a custom function in Zoho Creator?</h2><div itemprop="acceptedAnswer" itemscope itemtype="https://schema.org/Answer"><p itemprop="text">To create a custom function in Zoho Creator, follow these steps:<br> 1. Go to your Zoho Creator application and click on "Settings".<br> 2. Under "Customization", select "Functions".<br> 3. Click on the "Add Function" button.<br> 4. Give your function a name and write the Deluge script for the function.<br> 5. Click "Save" to create the custom function.</p></div>
</div><div itemprop="mainEntity" itemscope itemtype="https://schema.org/Question"><h2 itemprop="name">Can you customize Zoho Creator?</h2><div itemprop="acceptedAnswer" itemscope itemtype="https://schema.org/Answer"><p itemprop="text">Yes, you can customize Zoho Creator to tailor it to your specific needs. You can create custom functions, add workflows, design personalized forms, and build unique reports to optimize your application's performance.</p></div>
</div><div itemprop="mainEntity" itemscope itemtype="https://schema.org/Question"><h2 itemprop="name">How do you write a function in Zoho?</h2><div itemprop="acceptedAnswer" itemscope itemtype="https://schema.org/Answer"><p itemprop="text">To write a function in Zoho, you can use the Deluge scripting language. Deluge allows you to perform various actions, such as manipulating data, creating custom workflows, and implementing business logic, all within the Zoho platform.</p></div>
</div><div itemprop="mainEntity" itemscope itemtype="https://schema.org/Question"><h2 itemprop="name">How do I add a custom function in Zoho CRM?</h2><div itemprop="acceptedAnswer" itemscope itemtype="https://schema.org/Answer"><p itemprop="text">To add a custom function in Zoho CRM, follow these steps:<br> 1. Open your Zoho CRM account and go to "Settings".<br> 2. Under "Customization", select "Module Customization".<br> 3. Click on "Scripts" and then "Functions".<br> 4. Create a new function and write the Deluge script for the function.<br> 5. Save the function to add it to Zoho CRM.</p></div>
</div><div itemprop="mainEntity" itemscope itemtype="https://schema.org/Question"><h2 itemprop="name">How do I add a formula in Zoho Creator?</h2><div itemprop="acceptedAnswer" itemscope itemtype="https://schema.org/Answer"><p itemprop="text">To add a formula in Zoho Creator, you can use the Formula field type. When creating or editing a field, select "Formula" as the field type, and then write the formula using field references and mathematical operators to calculate the desired value.</p></div>
</div></div></div></div></div></div></div></div></div> ]]></content:encoded><pubDate>Thu, 25 Jul 2013 15:10:00 -0500</pubDate></item></channel></rss>