Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Anonymous
Not applicable

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.

The key being that it only counts the PeDistinct Person Code of the date shown on the Graph is within the Start and End Dates.

So if a Person Code is Between March and September  2017 - it will be counted once for each month.


TIA

Person CodeStart DateEnd Date
103/12/201815/02/2019
203/12/201815/02/2019
303/12/201815/02/2019
403/12/201815/02/2019
107/08/201701/12/2017
207/08/201701/12/2017
307/08/201701/12/2017
407/08/201723/03/2018
115/05/201715/11/2018
215/05/201719/06/2017
315/05/201715/11/2018
409/05/201710/05/2017




 

 

1 ACCEPTED SOLUTION
v-shex-msft
Community Support
Community Support

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

Community Support Team _ Xiaoxin
If this post helps, please consider accept as solution to help other members find it more quickly.

View solution in original post

1 REPLY 1
v-shex-msft
Community Support
Community Support

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

Community Support Team _ Xiaoxin
If this post helps, please consider accept as solution to help other members find it more quickly.

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.