Forum Discussion

magnus_jansson's avatar
magnus_jansson
New Member
10 years ago
Solved

Show applicants on all dates

Hi. Im new at BI and dont really know how to start with this problem.   I have a very simple list with a name, a start date and a stop date. I want to have a diagram thats shows the amount of peopl...
  • MattAllington's avatar
    10 years ago

    This is "relatively" difficult because the data isn't a natural fit to the "easy way" of using power pivot/power bi. I suggest two tables that are not connected. The table you mention (I will call data) and a second Calendar table that has a list of all your dates. Then create a measure in the calendar table something like this. 

     

    Count of People = countrows(filter(data),

        Data[startdate] <= max(Calendar[Date]) &&

        Data[enddate] >= max(Calendar[Date])

       )

     

    Put the date column from your calendar on a chart axis and the new measure in values.