Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
8 years ago
Solved

Count on Graph for values WithIn Dates

Hi , Was wondering of you could help... i am very new to BI (as you will see) but thought i would ask.   I am trying to reflect the Count of the PersonID per month between Start and End Date. ...
  • Anonymous's avatar
    Anonymous
    8 years ago

    HI Anonymous,

     

    You can't direct use these date column to achieve your requirement, please take a look at following link to know how to create a detail data table to store expand date range and use it to direct calculate with records in date range.

     

    Reference link:

    Spread revenue across period based on start and end date, slice and dase this using different dates

     

    Sample table formula:

    Detail person records =
    VAR _calendar =
        CALENDAR ( MIN ( Table[Start Date] ), MAX ( Table[End Date] ) )
    RETURN
        SELECTCOLUMNS (
            FILTER (
                CROSSJOIN ( Table, _calendar ),
                Table[Start Date] <= [Date]
                    && Table[End Date] >= [Date]
            ),
            "Person Code", [Person Code],
            "Date", [Date]
        )
    

    Notice: please don't forget to create relationship between new table and original table based on 'person code'.

     

    Regards,
    Xiaoxin Sheng