Issue With Formula

I am trying to use the following formula but I get the error, “Syntax error at line 4, column 1, token ‘END’”. Any thoughts?

CASE WHEN IsEmpty([Issue].CurrentHierarchyMember.Get(‘Due date’))
THEN [Issue].CurrentHierarchyMember.Get(‘Requested Go-live’)
ELSE([Issue].CurrentHierarchyMember.Get(‘Due date’)
END

Thanks,
Tyler

you have an additional opening bracket before the [ISSUE] in else that is not closed.

1 Like

Thank you, second eye always helps.