Announcements
This site is in read only until July 22 as we migrate to a new platform; refer to this community post for more details.

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 61
1 REPLY 1

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