I wrote a T-SQL Statement similar like this (the original one looks different but I want to give an easy example here):
SELECT first_name + CASE last_na
Found a solution to this. Just ISNULL the CASE statement:
ISNULL
CASE
ISNULL(CASE x WHEN x THEN x ELSE x END, '') AS 'BLAH'