Podio Calculation field makes use of Markdown features, so we are free to use them.
As a result, we are free to add web links. There are two way to do so:
1) By writing down the URL. It then automatically it becomes a link.
Just copy paste the following code to a Calculation field:
@Text ? “https://www.google.com” : “”
/* ——————————————————————————————————-
Created by BendixKiel ApS – Copenhagen based Podio Preferred Partner -with more than 6 years of experience in helping organizations implement Podio. Please feel free to contact us if you need help evaluate, structure or implement Podio in your organization.
BendixKiel ApS www.bendixkiel.org +45 71 99 05 80 anders@bendixkiel.org
———————————————————————————————————– */
You need to replace the @Text with any text field of your app. We just include a redundant @Text, in order to make Calculation field work.
2) Another way to create a link in Markdown, is to write text that contains a web link
Markdown format for that is the following:
[ text ] ( webAddress )
Just copy paste the following code to a Calculation field:
@Text ? “[Google](https://www.google.com)” : “”
/* ——————————————————————————————————-
Created by BendixKiel ApS – Copenhagen based Podio Preferred Partner -with more than 6 years of experience in helping organizations implement Podio. Please feel free to contact us if you need help evaluate, structure or implement Podio in your organization.
BendixKiel ApS www.bendixkiel.org +45 71 99 05 80 anders@bendixkiel.org
———————————————————————————————————– */
And replace the @Text with any text field of your app. We just include a redundant @Text, in order to make Calculation field work.
Thus, the following changes in “Modify Template”:
give us the following result:
No comments yet.