Adding a Link to a Row that expands

Hi!

I would like to create a row that pulls the Rowurl with the Display text of another Row (“Project Title”) and to that adds a “&modal=true” after the URI so when someone clicks it takes them to the actual expanded row.

So, f.e. I have a table with many rows being one the “Project Title”
In http it would be something like;

<a href="thisrow.Projecttitle" + &modal=true">Project Title</a>

Hope this makes sense?

Could you explain in a “business” example? I unfortunately do not understand your requirement.

R
P

Hi @Miguel_Gomez_Limmert :blush:

Are you trying to do something like this ? :innocent:
(Take a look at the formula in [Row URL] and then Hyperlink :blush: )


Edit/Add-on:

  • Formula in the field [Row URL]
Format("{1}{2}",thisRow.Url(),"&modal=true").ToText()
  • Formula in the field Hyperlink
Hyperlink(thisRow.[Row URL],thisRow.[Project Title])

:point_right: All-in-one:

Hyperlink(
  Format("{1}{2}",
    thisRow.Url(),"&modal=true").ToText(),
  thisRow.[Project Title]
)

Hey @Pch this is perfect and exactly what I needed! Thanks a lot!

1 Like

No problem @Miguel_Gomez_Limmert :grin: !

I’m very glad to know this is what you were looking for :grin: !