For Zoho services only


I'm currently part of a wider delivery team at Ascent Business Solutions, recognised as a leading Zoho Premium Solutions Partner in the United Kingdom.

Ascent Business Solutions support organisations with everything from targeted technical fixes through to full Zoho CRM implementations and long-term platform adoption. Working as a team rather than a one-person consultancy allows projects to move forward consistently, with access to the right skills at each stage.

The team I manage specialises in API integrations between Zoho and third-party finance and commerce platforms such as Xero, Shopify, WooCommerce, and eBay. Much of our work involves solving integration challenges that fall outside standard documentation, supporting new ideas, new sectors, and evolving business models.

Success is measured through practical outcomes and return on investment, ranging from scaling small operations into high-turnover businesses to delivering rapid gains through online payments, automation, and streamlined digital workflows.

If you are looking for structured Zoho expertise backed by an established consultancy, you can contact Ascent Business Solutions on 0121 392 8140 (UK), email info@ascentbusiness.co.uk, or visit https://www.ascentbusiness.co.uk.

Zoho Deluge - Determine Quarter from Date with Fiscal Year

What?
This is a quick article on what should be a simple mathematics equation: Determine the quarter from a given month.

Why?
Fine if you are determining the quarter by the month and your Fiscal year starts from January, simply divide by 3...

How?
I'm showing this in Zoho Deluge but the logic can be adapted to other code. You will need this snippet of code for the examples below:
copyraw
l_Months = {1,2,3,4,5,6,7,8,9,10,11,12};
l_MonthNames = {"January","February","March","April","May","June","July","August","September","October","November","December"};
  1.  l_Months = {1,2,3,4,5,6,7,8,9,10,11,12}
  2.  l_MonthNames = {"January","February","March","April","May","June","July","August","September","October","November","December"}

Here's the standard code you'd expect if your Fiscal year starts in January (Divide by 3 and round up):
copyraw
for each v_Month in l_Months
{
	v_Quarter = (v_Month.toLong() / 3).ceil();
	info "Month: " + l_MonthNames.get(v_Month-1) + " :: Quarter: " + v_Quarter;
}
  1.  for each v_Month in l_Months 
  2.  { 
  3.      v_Quarter = (v_Month.toLong() / 3).ceil()
  4.      info "Month: " + l_MonthNames.get(v_Month-1) + :: Quarter: " + v_Quarter; 
  5.  } 
Yields:
copyraw
Month: January :: Quarter: 1
Month: February :: Quarter: 1
Month: March :: Quarter: 1
Month: April :: Quarter: 2
Month: May :: Quarter: 2
Month: June :: Quarter: 2
Month: July :: Quarter: 3
Month: August :: Quarter: 3
Month: September :: Quarter: 3
Month: October :: Quarter: 4
Month: November :: Quarter: 4
Month: December :: Quarter: 4
  1.  Month: January :: Quarter: 1 
  2.  Month: February :: Quarter: 1 
  3.  Month: March :: Quarter: 1 
  4.  Month: April :: Quarter: 2 
  5.  Month: May :: Quarter: 2 
  6.  Month: June :: Quarter: 2 
  7.  Month: July :: Quarter: 3 
  8.  Month: August :: Quarter: 3 
  9.  Month: September :: Quarter: 3 
  10.  Month: October :: Quarter: 4 
  11.  Month: November :: Quarter: 4 
  12.  Month: December :: Quarter: 4 

Now what if your year starts in August? You can do this:
copyraw
// let's say financial year starts in August
v_MonthStart = 8;
for each v_Month in l_Months
{
	v_Quarter = 1 + (((v_Month - v_MonthStart) % 12) / 3).floor();
	if(v_Quarter < 1)
	{
		v_Quarter = v_Quarter + 4;
	}
	info "Month: " + l_MonthNames.get(v_Month-1) + " :: Quarter: " + v_Quarter;
}
  1.  // let's say financial year starts in August 
  2.  v_MonthStart = 8
  3.  for each v_Month in l_Months 
  4.  { 
  5.      v_Quarter = 1 + (((v_Month - v_MonthStart) % 12) / 3).floor()
  6.      if(v_Quarter < 1) 
  7.      { 
  8.          v_Quarter = v_Quarter + 4
  9.      } 
  10.      info "Month: " + l_MonthNames.get(v_Month-1) + :: Quarter: " + v_Quarter; 
  11.  } 
Yields:
copyraw
Month: January :: Quarter: 2
Month: February :: Quarter: 3
Month: March :: Quarter: 3
Month: April :: Quarter: 3
Month: May :: Quarter: 4
Month: June :: Quarter: 4
Month: July :: Quarter: 4
Month: August :: Quarter: 1
Month: September :: Quarter: 1
Month: October :: Quarter: 1
Month: November :: Quarter: 2
Month: December :: Quarter: 2
  1.  Month: January :: Quarter: 2 
  2.  Month: February :: Quarter: 3 
  3.  Month: March :: Quarter: 3 
  4.  Month: April :: Quarter: 3 
  5.  Month: May :: Quarter: 4 
  6.  Month: June :: Quarter: 4 
  7.  Month: July :: Quarter: 4 
  8.  Month: August :: Quarter: 1 
  9.  Month: September :: Quarter: 1 
  10.  Month: October :: Quarter: 1 
  11.  Month: November :: Quarter: 2 
  12.  Month: December :: Quarter: 2 

And just to prove the same code snippet works for any month, let's use the same code but start in April:
copyraw
// let's say financial year starts in April
v_MonthStart = 4;
for each v_Month in l_Months
{
	v_Quarter = 1 + (((v_Month - v_MonthStart) % 12) / 3).floor();
	if(v_Quarter < 1)
	{
		v_Quarter = v_Quarter + 4;
	}
	info "Month: " + l_MonthNames.get(v_Month-1) + " :: Quarter: " + v_Quarter;
}
  1.  // let's say financial year starts in April 
  2.  v_MonthStart = 4
  3.  for each v_Month in l_Months 
  4.  { 
  5.      v_Quarter = 1 + (((v_Month - v_MonthStart) % 12) / 3).floor()
  6.      if(v_Quarter < 1) 
  7.      { 
  8.          v_Quarter = v_Quarter + 4
  9.      } 
  10.      info "Month: " + l_MonthNames.get(v_Month-1) + :: Quarter: " + v_Quarter; 
  11.  } 
Yields:
copyraw
Month: January :: Quarter: 4
Month: February :: Quarter: 4
Month: March :: Quarter: 4
Month: April :: Quarter: 1
Month: May :: Quarter: 1
Month: June :: Quarter: 1
Month: July :: Quarter: 2
Month: August :: Quarter: 2
Month: September :: Quarter: 2
Month: October :: Quarter: 3
Month: November :: Quarter: 3
Month: December :: Quarter: 3
  1.  Month: January :: Quarter: 4 
  2.  Month: February :: Quarter: 4 
  3.  Month: March :: Quarter: 4 
  4.  Month: April :: Quarter: 1 
  5.  Month: May :: Quarter: 1 
  6.  Month: June :: Quarter: 1 
  7.  Month: July :: Quarter: 2 
  8.  Month: August :: Quarter: 2 
  9.  Month: September :: Quarter: 2 
  10.  Month: October :: Quarter: 3 
  11.  Month: November :: Quarter: 3 
  12.  Month: December :: Quarter: 3 
Category: Zoho Deluge :: Article: 252

Joes Word Cloud

Accreditation

Badge - Zoho Creator Certified Developer Associate
Badge - Zoho Deluge Certified Developer
Badge - Certified Zoho CRM Developer

Donate & Support

If you like my content, and would like to support this sharing site, feel free to donate using a method below:

Paypal:
Donate to Joel Lipman via PayPal

Bitcoin:
Donate to Joel Lipman with Bitcoin bc1qf6elrdxc968h0k673l2djc9wrpazhqtxw8qqp4

Ethereum:
Donate to Joel Lipman with Ethereum 0xb038962F3809b425D661EF5D22294Cf45E02FebF

Credit where Credit is Due:


Feel free to copy, redistribute and share this information. All that we ask is that you attribute credit and possibly even a link back to this website as it really helps in our search engine rankings.

Disclaimer: Please note that the information provided on this website is intended for informational purposes only and does not represent a warranty. The opinions expressed are those of the author only. We recommend testing any solutions in a development environment before implementing them in production. The articles are based on our good faith efforts and were current at the time of writing, reflecting our practical experience in a commercial setting.

Thank you for visiting and, as always, we hope this website was of some use to you!

Kind Regards,

Joel Lipman
www.joellipman.com