Hi all,
it's me again! So I've got this formula that breaks down hours by duration into relevant months and somehow I can't get the syntax right.
What I'm trying to say is that if Global lead at row = "EU" , use lead startup and "Duration (months)", if global lead at row <> "EU" and Regional startup date is not blank, use regional startup date and "Duration (months) - regional", else just use lead startup and "duration (months)"... But I'm getting unparseable on it.
=IF(AND([Global Lead]@row = "EU", ([Jan-21]$1 >= YEAR($[Lead Start-Up]@row) + RIGHT("00" + MONTH($[Lead Start-Up]@row), 2)), ([Jan-21]$1 <= YEAR($[End Date (CSR)]@row) + RIGHT("00" + MONTH($[End Date (CSR)]@row), 2))), $[Total Budgeted incl MDR Oversight]@row / $[Duration (months)]@row), IF(AND(NOT(ISBLANK([Regional Start-Up]@row)), [Global Lead]@row <> "EU", ([Jan-21]$1 >= YEAR($[Regional Start-Up]@row) + RIGHT("00" + MONTH($[Regional Start-Up]@row), 2)), ([Jan-21]$1 <= YEAR($[End Date (CSR)]@row) + RIGHT("00" + MONTH($[End Date (CSR)]@row), 2))), $[Total Budgeted incl MDR Oversight]@row / $[Duration (months) - regional]@row, ([Jan-21]$1 >= YEAR($[Lead Start-Up]@row) + RIGHT("00" + MONTH($[Lead Start-Up]@row), 2)), ([Jan-21]$1 <= YEAR($[End Date (CSR)]@row) + RIGHT("00" + MONTH($[End Date (CSR)]@row), 2))), $[Total Budgeted incl MDR Oversight]@row / $[Duration (months)]@row)))
Anyone can help, please?