I have a Project fact table which has a start date and latest activity date. One of the questions I am trying to answer is for each year how many active projects do i have?
So lets says ProjectA started in 2012 and is active in 2016. ProjectB started in 2011 and last activity was 2015.
So, the number of active projects by year needs to be shown as
2011 - 1
2012 - 2
2013 - 2
2014 - 2
2015 - 2
2016 - 1
I am confused how can i come up with the design or MDX and DAX to have this calculation done.
I have not run into a situation like this before so i am confused how to handle it.
I would really appreciate if someone can guide me. If any more detail is needed please let me know.