Dynamic Hyperlink with IF statement

I want to use HYPERLINK dynamically with an IF statement. 

IF(
   Result_Website IS NULL,
   Result_Title,
   HYPERLINK(Result_Website, Result_Title)
)

Only show an underlined hyperlink when there is a Result_Website. When Result_Website is NULL then just show the Result_Title without a hyperlink. Is this possible? 

0 1 48
1 REPLY 1

the code you wrote looks good to me! Is it not working as expected?