Get Birthday Months Formula

[Zoho CRM] Get Birthday Months Formula

Create a custom formula field and make sure the return type is String. Then, write this formula:

If(Month(${Contacts.Date of Birth})==1,'01',If(Month(${Contacts.Date of Birth})==2,'02',If(Month(${Contacts.Date of Birth})==3,'03',If(Month(${Contacts.Date of Birth})==4,'04',If(Month(${Contacts.Date of Birth})==5,'05',If(Month(${Contacts.Date of Birth})==6,'06',If(Month(${Contacts.Date of Birth})==7,'07',If(Month(${Contacts.Date of Birth})==8,'08',If(Month(${Contacts.Date of Birth})==9,'09',If(Month(${Contacts.Date of Birth})==10,'10',If(Month(${Contacts.Date of Birth})==11,'11',If(Month(${Contacts.Date of Birth})==12,'12',''))))))))))))

This is more preferred than the name of the respective months' names because you will be able to arrange the groupings in reporting/dashboard.

You can also use this for any date field for that matter. Just replace the name of the field in the formula above to the name of your field.

Good luck!

    • Related Articles

    • [Zoho CRM] Creating A Lead

      Leads in Zoho CRM can be created in several ways; Direct creation Import Social media connection (Facebook and Twitter) Zoho Mail integration Zoho Cliq (website ) integration To create directly, click on the '+' icon at the top right of the screen. ...
    • [Zoho CRM] Totalling from Related Records

      This function can be used to total a number from a related list. For example, you would like to calculate the revenue from the company based on the deals' amount. Notes: acctId = Accounts ID RelatedRecords = ...
    • [Zoho CRM] Cannot integrate with Zoho Campaign? "Organization already integrated"?

      Zoho CRM cannot be integrated with Marketing Automation and Zoho Campaign at the same time. To enable Zoho Campaign-Zoho CRM integration, the organization has to disable the existing integration from Marketing Hub to Zoho CRM first; and vice versa if ...
    • [Zoho CRM] A Comprehensive Guide for Zoho CRM Wizards

      Unleashing the Power of Zoho CRM Wizards: A Comprehensive Guide What is CRM Wizards? Zoho CRM Wizards are a powerful tool designed to simplify and enhance the data entry process in Zoho CRM. They enable users to break down lengthy forms into a series ...
    • [Zoho CRM] Adding business days and excluding weekends from formula field

      In Zoho CRM, or in any other Zoho apps that have a formula field, it is possible to configure it to return a date value and exclude weekends. For example, if the Opening Date of a Deal is today, I want to make the deadline for addressing it 2 days ...