You can implement formula-based logic within the Bigin system to automate priority assignment based on the content of the "Opportunity" field.
If(Contains(${Opportunity},'Existing'),'High', 'Medium')
You can implement formula-based logic within the Bigin system to automatically calculate commission based on the "Opportunity Amount" field.
If(${OpportunityAmount}<10000,${AnnualRevenue}*0.10,${AnnualRevenue}*0.15)
${Billable rate}*${Billable duration in days}*14*If(${VAT check}=='TRUE',1+${VAT}/100,1)
You can calculate the billable charge for services by multiplying the time worked (converted to hours) by the hourly rate. If you choose to include VAT, it adjusts the total by adding the VAT percentage to the calculation. If VAT isn't included, it computes the charge without any additional adjustments. Finally, it formats the calculated amount into a dollar value. This formula simplifies the process of determining charges, accounting for both time and optional VAT considerations in billing systems.
Max(${UserCreditScore} * ${CommissionPercent}, ${DiscountPercent} * ${UserCreditScore}, 100)
You can take a formula-driven approach within your Bigin system to automate the calculation of the company's total bonus amount and distribute each employee's share of the bonus.
Min(${UserCreditScore}* ${BonusPercent}, ${BonusAmount} / ${TotalEmployees}, 10000)
You need to validate product codes in your inventory management system. You use product codes to track various items in your inventory. However, you have different formats and lengths depending on the supplier and product category.
Len(${PartNumber})
If(And(Datecomp(${Closing Date}, ${Date 1}) <= 4320, ${Description} == 'UNPAID'), 'PAYMENT OVERDUE', 'null')
This formula assesses whether the difference between the closing date and a custom date field ("$Date 1}") is within the specified threshold. If the payment status is "UNPAID" and the time difference meets the criteria, the formula returns "PAYMENT OVERDUE"; otherwise, it returns "null."
If(And(Datecomp(${Closing Date}, Now()) <= 4320, ${Description} == 'UNPAID'), 'PAYMENT OVERDUE', 'null')
Both formulas use a threshold of 4,320 minutes (three days) to check whether the closing date of each deal is within an acceptable range. The inputs include "Closing Date" (the expected date of deal completion), "Date 1" (a reference date), and "Description" (which contains information about the payment status, such as "UNPAID").
The first formula checks if the difference between "Closing Date" and "${Date 1}" is less than or equal to three days and if the payment status is "UNPAID." If both conditions are met, the formula returns "PAYMENT OVERDUE"; otherwise, it returns "null."
Find(${Deal Owner},' ',1)
If(And(Price<1,Quantity<1),"Small", null)
Or(Sample_Rate_Check < 0, Sample_Rate_Check > 0.40)
If(Contains(Product_Type_Check, "part"), "Part", "Service")
If(Startswith(${Product Code},'ICU'),'Medical','Technical')
Learn how to use the best tools for sales force automation and better customer engagement from Zoho's implementation specialists.
If you'd like a personalized walk-through of our data preparation tool, please request a demo and we'll be happy to show you how to get the best out of Zoho DataPrep.
You are currently viewing the help pages of Qntrl’s earlier version. Click here to view our latest version—Qntrl 3.0's help articles.