The Blog

Podio Summary Tables: Display Related App Info

May 22, 2020
 

Podio apps can get long...with seemingly endless scrolling. One solution is to store key information in a secondary app. But then we run into issues navigating back and forth. Enter Summary Tables! Display related app information in a neat, concise table format (and navigate to the app if you need more detail)

Sample Calculation: 

var header = "["+@All of Property+"]("+'https://podio.com/incomedigscom/workspace-eewp6y/apps/properties/items/'+@All of Unique ID (Hidden)+")"

var label1 = "Status"
var label2 = "Zestimate"
var label3 = "Bedrooms"
var label4 = "Bathrooms"
var label5 = "Type"
var label6 = "Link to Comps"

var value1 = @All of Status
var value2 = "$"+@Sum of Zestimate.toFixed(0).replace(/\B(?=(\d{3})+(?!\d))/g, ",")
var value3 = @All of Bedrooms
var value4 = @Sum of Bathrooms.toFixed(1).replace(/\B(?=(\d{3})+(?!\d))/g, ",")
var value5 = @All of Home Type
var value6 = "[Zillow Comps]("+ @All of Zillow Comps + ")"


var markdown = header +" | "+ "\n --- | ---\n";
markdown += label1 +" | "+ value1 + "\n";
markdown += label2 +" | "+ value2 + "\n";
markdown += label3 +" | "+ value3 + "\n";
markdown += label4 +" | "+ value4 + "\n";
markdown += label5 +" | "+ value5 + "\n";
markdown += label6 +" | "+ value6 + "\n";

markdown

SUBSCRIBE FOR UPDATES

Get actionable business advice delivered to your inbox

Subscribe for weekly videos on how to leverage software to scale your business.

You're safe with me. I'll never spam you or sell your contact info.