In the web report they look great if I do something like this in a text component:
Code: Select all
Email: <a href='mailto:{BusinessObject.Email}'>{BusinessObject.Email}</a>
Code: Select all
<a href='mailto:{BusinessObject.Email}'>{BusinessObject.Email}</a>
This is to be expected, but it is not the desired outcome. Ideally I'm looking for a solution that would hyperlink via mailto for the email addresses in the web report (which I have successfully done) AND display just the email address (doesn't necessarily have to be hyperlinked) in the PDF/Word/Excel exports.Email: <a href='mailto:firstname.lastname@company.com'>firstname.lastname@company.com</a>
Perhaps there is a condition I could use.
Thanks.