I have a custom object and I can't make a formula field (text) - HYperlink to work.
Working formula which passes Account ID as the parameter.
HYPERLINK("https://wju.lightning.force.com/one/one.app?source=aloha#/sObject/00O0h000004Y0JJ/view?fv0="& Id, "PLG Donations Report (w Soft Credits)")
What I need is a simple link to the report - no parameters passed.
I tried this and it doesn't work:
HYPERLINK("https://wju.lightning.force.com/one/one.app?source=aloha#/sObject/00O0h000004Y0JJ/view, "PLG Donations Report (w Soft Credits)")
Thank you!
2 件の回答
Hi Flavia,
It looks like you are missing a quote there, right after the word view.
You could try copy/pasting the following:
HYPERLINK("https://wju.lightning.force.com/one/one.app?source=aloha#/sObject/00O0h000004Y0JJ/view", "PLG Donations Report (w Soft Credits)")