Surface the "View details" action or create a combined LINKTOFILTEREDVIEW and LINKTOROW function

Try this:

CONCATENATE(
  LINKTOFILTEREDVIEW(
    "Order - Detail",
    ([_THISROW].[Customer] = [Customer])
  ),
  "&row=",
  ENCODEURL([_THISROW])
)
3 Likes