Help

Need help with a formula for the following Quarter.

Topic Labels: Formulas
159 2
cancel
Showing results for 
Search instead for 
Did you mean: 
TRBS
6 - Interface Innovator
6 - Interface Innovator

If my event is September 2, 2025 (aka "program start date"), it would be in Quarter 3, 2025. But I need to list that commission would be paid the following quarter (aka "quarter earned", so Q4, 2025. Fiscal year runs Jan - Dec like the calendar.

I currently have the formula (see below), but its marking everything in FY 2024. instead of in the appropriate next quarter. I know I am missing a small tweak, but cannot figure it out!

 

'Q' &
IF(
ROUNDUP(MONTH({Program Start Date})/3, 0) = 5,
1,
ROUNDUP(MONTH({Program Start Date})/3, 0)
) &
" - FY" &
IF(
ROUNDUP(MONTH({Program Start Date})/3, 0) = 5,
25,
24)

 

2 Replies 2
TheTimeSavingCo
18 - Pluto
18 - Pluto

EDITED:  Ha just use @Alexey_Gusev's formula in the next post instead, it's much cleaner!

Does this look right? 

Screenshot 2025-01-05 at 10.36.07 AM.png

 

 

 

'Q' & 
DATETIME_FORMAT(
  DATEADD(
    {Program Start Date},
    1,
    'quarter'
  ),
  'Q'
) &
" - FY" &
DATETIME_FORMAT(
  DATEADD(
    {Program Start Date},
    1,
    'quarter'
  ),
  'YY'
)

 

 

 

Hi,
A "D.R.Y." version of formula: 😁

Alexey_Gusev_0-1736129031066.png