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?