Hi everyone,
I need to create a hyperlink on our standard Account object that takes me directly to a Custom Object Related List.
I've added the following Formula(Text) field on my Account record:
HYPERLINK("/" & Id & "#" & Id & "related/Partner_Prospecting__r/view","Show Order")
However the link is taking me back to the Account record rather than to the Related Object List page.
This is where the link is taking me:
And this is where I need the link to take me:
Thanks,
Boshra
2 respuestas
Eric Praud (Activ8 Solar Energies) Forum Ambassador
Hi,
I tried this to get to the Contacts Related list:
HYPERLINK("/lightning/r/Account/"&Id&"/related/Contacts/view", "Contact List")Maybe try:
HYPERLINK("/lightning/r/Account/"&Id&"/related/Partner_Prospecting__r/view","Show Order")