Jan 04, 2025 04:18 PM
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!
Jan 04, 2025 06:35 PM - edited Jan 06, 2025 01:55 AM
EDITED: Ha just use @Alexey_Gusev's formula in the next post instead, it's much cleaner!
Does this look right?
'Q' &
DATETIME_FORMAT(
DATEADD(
{Program Start Date},
1,
'quarter'
),
'Q'
) &
" - FY" &
DATETIME_FORMAT(
DATEADD(
{Program Start Date},
1,
'quarter'
),
'YY'
)
Jan 05, 2025 06:04 PM
Hi,
A "D.R.Y." version of formula: 😁