Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
marcoebner
Partner - Contributor II
Partner - Contributor II

Data from the last Timeline for every Year

I have a list of hundreds of projects . Each project has many timelines . I need the latest timeline annually.

2 Replies
JonnyPoole
Employee
Employee

Perhaps change the dimension

from:   <Date>

To:    Aggr( Max( <Date>) , <Project>, <Year> )

You may need to change your load editor to include a Year field

load

     <Date>

from <>

->

load

     <Date>

     Year(<Date>) as Year

from <>

marcoebner
Partner - Contributor II
Partner - Contributor II
Author

Good solution , thanks for the support