Forum Discussion

sam_hoccane's avatar
sam_hoccane
Helper I
3 years ago
Solved

Dynamic Fiscal Year

Hello Community, 

 

Woould you please help me to determine how to create column that can Identify Current fiscal Quater. I have tried with this formula but it is not working.  ( I am donot have dates table)

IF ( Today () >= DATE(2022,11,01) && Today() <=DATE (2023,01,31) , "Q1" ,"")
IF ( Today () >= DATE(2023,02,01) && Today() <=DATE (2023,04,30) , "Q2" ,
IF ( Today () >= DATE(2023,05,01) && Today() <=DATE (2023,07,31) , "Q3" ,
IF ( Today () >= DATE(2023,08,01) && Today() <=DATE (2023,10,31) , "Q4" ,
"NA" ))))

Our Fiscal Quarter  starts from:
Q1 : Nov to Jan
Q2: Feb to April
Q3: May to  July
Q4: Aug to oct

Expected Results :
Due Date (M/D/Y)Current Quarter 
01/19/2023Q1
10/31/2022Q1
11/22/2022Q1
12/15/2022Q1
02/17/2023 
07/18/2023 
09/18/2023 
10/25/2023 
11/14/2023 

Thankyou in Anticipation.

5 Replies