Hi Frank,
Outlook problems? What's new :)
This bloated email client application has many 'automations' which can be turned off and on making predictable results as a mail sender pretty small.
The issue you have can probable be described as follows:
You should have been specific to begin with and not rely on the software of the recipient to fix what you left out:
the <html> code which made links possible.
This is however a precise task in a sheet as the " double quotes symbol must be part of the outcome whilst being interpreted by the sheet to determine data from instructions.
e.g. ="Firstname:"&C2 may give "Firstname: Frank" but not the CHAR(34) surrounding Firstname: earlier.
to get a working hyperlink to:
you have to specify:
but more elegant would be to produce a human readable hyperlink instead to for instance:
Click this link to our website
by specifying:
from first < to last > ought to tell even stuborn Outlook what to do exactly. (Show 'Click this link to our website' and open a browser to the hyperlink:
https://my.websites.com/path/file.html If you need to cook user-specific links, using the data from the column B:B you have to compose them like in for example Z1:
=ARRAYFORMULA( IF( ROW(A:A)=0, "Custom Link",
IF( LEN(A:A)=0, "",
"<a href=”
&CHAR(34)
&B:B&
&CHAR(34)
&"> Click this link to our website</a>"
)))
The Title / Range name will be 'Custom Link' but make sure it's unique() and comprehensible.
And your hyperlink will refere to:
As where mine will be
Yet will read in the email-client of our choosing:
Click this link to our website
although the underlying hyperlink differs clearly.
But you're probably dazzled by now and in need of a lazy rainy holiday like me ;)
Cheers, Bart