Podio Calculation field makes use of Markdown features, so we are free to use them.
One of those simple features is to add a horizontal line.
Just copy paste the following code to a Calculation field:
@Text ? “—” : “”
/* ——————————————————————————————————-
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
———————————————————————————————————– */
Replace the @Text with any text field of your app. We just include a redundant @Text, in order to make calculation field work.
You can use more dashes if you want, the result will be the same.
@Text ? “————-” : “”
/* ——————————————————————————————————-
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
———————————————————————————————————– */
There needs to be at least three dashes. You will have the same result if you use asterisks (*), or underscores ( _ ) .
Thus, the following changes in “Modify Template”
give us the following result
No comments yet.