SmartGantt will be discontinued by the end of the year. New Sign-ups and Free Trail are no longer offered.
Sign-in and access to the SmartGantt platform will not be possible after January 1st 2024.
×

Dear Valued Users,

With a mixture of gratitude and sadness, we're writing to announce that we will be discontinuing our SmartGantt platform as of this year. This decision wasn't made lightly, and we want to express our sincere appreciation for your support and engagement over the years. Our journey together has been filled with milestones, achievements, and shared moments of accomplishment.

All active users have been informed by email.

Best regards,
Anders Bendix Kiel, WorkWays, SmartGantt Team

Blog

Make parent last as long as child – calculation

You can use calculation fields to make a parent item last the duration of its related items. Like this:

calcdur4

In this way the related items (that is; sub-referenced, second order items) will decide the timeline of its overacting parent item automatically. Meaning if you have a project as a parent item, and subsequent deliverables, the project’s timeline will be the entire duration of its deliverables.

 

Note: for this to work your related app needs 2 separate date fields: e.g., Start Date and End Date:

 

calcduration1

 

 

First go to your parent/main app (the app that is going to follow the duration of the related items) in Podio and click Modify template.

Replace or add a calculation field and name it whatever you wish (Start Date,Kick off, etc – here its called it Calculation_Start).

Write: @Min of and choose the according incoming Start date field in your related app.

calcdur2

 

Here we use the Deliverables app as the related app, you might have another app, but remember that it needs to be related. 

@Min of  will pick the earliest date from your related items  

 

Add another field for End date (due date, etc.), write @Max of and choose the according incoming End date field in the related app.

@Max of  will pick the latest date from your related items  

 

This is what your template will look like after adding both dates :

calcdur3

 

Note: This calculation will only pick up dates from items that are related to your main app (Incoming). To base the duration on the items that related from this app to another other app, choose the Outgoing option in the menu that comes up when toy choose @Min and @Max.

Optional: create a duration field to see how many days the item lasts.
Add another field called Duration, and copy paste this code snippet:

var start = @Min of Start Date;
var end = @Max of End Date;

moment(end).diff(moment(start), ‘days’)

 

In SmartGantt, you can simply create a chart as usual, and choose your new calculation fields as date fields! Read more on how to create charts here:

Quick video tutorial 

Detailed written tutorial 

________________________________

FAQ:

Q: What happens if I only have one item?

Then the parent item will follow the duration of this item

 

Q: What happens if I add more related items?

The calculation will automatically pick up the earliest and latest dates, remember to refresh your chart when you add a related item!

 

See our other tutorials on how to work with calculation fields in Podio: BendixKiel calculation tutorials