Change link symbol on cards

In my project tracker, I have a table with three link columns:

  • google sheet
  • Overleaf doc
  • Zoom room

I would like the links to be clickable from a Card view. But I’m struggling to present the three links. If I use Icon, they all have the same icon, the globe-like icon for Links in Coda, which is very confusing. If I use bare URL display, it sucks cuz bare URL’s. And URL names is not a good solution either.

I would like to be able to select the Icon used to present a clickable Link in a Card view, and have them all in a row on the card, instead of each on its own row. Is this possible, or have you dealt with a similar problem?

hi @silviana_amethyst ,

did you consider the usage of Hyperlink() which makes it possible for example to reference a word and link it (to avoid confusing as described).

Cheers, christiaan

Thank you. I think I just grokked. I made a helper column to hold the content to display on the card using this formula:

List(
  If(thisRow.[Google doc].IsBlank(),"",Hyperlink(thisRow.[Google doc],"Google Doc")),
  If(thisRow.Overleaf.IsBlank(),"",Hyperlink(thisRow.Overleaf,"Overleaf")),
  If(thisRow.[Online meeting room link].IsBlank(),"",Hyperlink(thisRow.[Online meeting room link],"Zoom room"))
  )

I’d prefer to use the favicons from the sites themselves, but I’ll content myself with clickable text.

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.