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
jeffr
New Member

chart with start and end date

I would like to create a line chart based on data that only has a start and end date.

 

Here is a sample of the data

 

Type Start Date End Date

IW12/01/201712/31/2017
IW12/01/201712/31/2017
JL12/01/201712/31/2017
JL12/01/201712/14/2017
EC12/15/201712/31/2017
IW12/01/201712/24/2017

 

Ideally it would group based on Type and then create a line chart with the Y Axis as Type and the X-Axis would be the Start Date to the End Date range.  Then for each day in between start and end it would have the Count of Type.

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

Hi @jeffr,

 

You can try to use below formula to generate the detail date table, then build relationship between original table and new table. After these steps, you can use new date form new table as the axis and drag id to value field with summary mode count.

 

Original table:
1.PNG

 

Sample:

Detail = 
VAR temp =
    SELECTCOLUMNS (
        'Sample',
        "Index", [Index],
        "StartDate", [StartDate],
        "EndDate", [EndDate]
    )
VAR vCalendar =
    CALENDAR ( MINX ( temp, [StartDate] ), MAXX ( temp, [EndDate] ) )
RETURN
    SELECTCOLUMNS (
        FILTER (
            CROSSJOIN ( temp, vCalendar ),
            [StartDate] <= [Date]
                && [EndDate] >= [Date]
        ),
        "Index", [Index],
        "StartDate", [StartDate],
        "EndDate", [EndDate],
        "Detail", [Date]
    )

Expand tableExpand tableRelationshipRelationship

Create line chart with above columns:

4.PNG

 

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

4 REPLIES 4
Ashish_Mathur
Super User
Super User

Hi,

 

You have reposted this question.  I had shared my solution in your previous post.  Here is the download link to my solution.

 

Hope this helps.


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/
v-shex-msft
Community Support
Community Support

Hi @jeffr,

 

You can try to use below formula to generate the detail date table, then build relationship between original table and new table. After these steps, you can use new date form new table as the axis and drag id to value field with summary mode count.

 

Original table:
1.PNG

 

Sample:

Detail = 
VAR temp =
    SELECTCOLUMNS (
        'Sample',
        "Index", [Index],
        "StartDate", [StartDate],
        "EndDate", [EndDate]
    )
VAR vCalendar =
    CALENDAR ( MINX ( temp, [StartDate] ), MAXX ( temp, [EndDate] ) )
RETURN
    SELECTCOLUMNS (
        FILTER (
            CROSSJOIN ( temp, vCalendar ),
            [StartDate] <= [Date]
                && [EndDate] >= [Date]
        ),
        "Index", [Index],
        "StartDate", [StartDate],
        "EndDate", [EndDate],
        "Detail", [Date]
    )

Expand tableExpand tableRelationshipRelationship

Create line chart with above columns:

4.PNG

 

Regards,

Xiaoxin Sheng

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

Thanks @v-shex-msft. This method works but the only issue I have is the data label in the Y axis duplicates excatly 4 times, not sure why, though the numbers are correct (screenshot attached). Any lead how to resolve this? Thanks!

indranisaha_0-1705856434297.png

 





WolfBiber
Employee
Employee

hey,

if you goal is to show the time period please refer to following posts:

"Event-in-Progress"

https://community.powerbi.com/t5/Desktop/Count-of-Active-Contracts-by-Start-en-End-date/td-p/94104

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.