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

Grow your Fabric skills and prepare for the DP-600 certification exam by completing the latest Microsoft Fabric challenge.

Reply
Leslie1015
Frequent Visitor

Need Help Creating Start and End Date Column in Power BI

Hi everyone,

 

I'm new to power BI, can somebody help me on how to create a start and end date in power BI.

This is the data I have

 

Date
Wed, 01 Mar 2023 07:00:53
Wed, 01 Mar 2023 07:01:12
Wed, 01 Mar 2023 07:01:23
Wed, 01 Mar 2023 07:01:31
Wed, 01 Mar 2023 07:07:30
Wed, 01 Mar 2023 07:09:06

 

I want the output to be like this

DateStart date End Date
Wed, 01 Mar 2023 07:00:53Wed, 01 Mar 2023 07:00:53Wed, 01 Mar 2023 07:01:12
Wed, 01 Mar 2023 07:01:12Wed, 01 Mar 2023 07:01:12Wed, 01 Mar 2023 07:01:23
Wed, 01 Mar 2023 07:01:23Wed, 01 Mar 2023 07:01:23Wed, 01 Mar 2023 07:01:31
Wed, 01 Mar 2023 07:01:31Wed, 01 Mar 2023 07:01:31Wed, 01 Mar 2023 07:07:30
Wed, 01 Mar 2023 07:07:30Wed, 01 Mar 2023 07:07:30 
Wed, 01 Mar 2023 07:09:06Wed, 01 Mar 2023 07:09:06 
1 ACCEPTED SOLUTION

Hi @Leslie1015,

You can create two calculate columns to achieve your requirement. The start date reference from the raw date field, the end date use current index field value to lookup the next row date value.

StartDate= 'Table'[Date]

EndDate = 
    CALCULATE(
        MAX('Table'[Date]),
        FILTER(
            ALL('Table'),
            'Table'[Index] = EARLIER('Table'[Index]) + 1
        )
    )

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

2 REPLIES 2
Leslie1015
Frequent Visitor

i forgot to add the Index Field. So, Ihave the date and the Index. I just need to get atleast the End Date. Can somebody help me please

  Output I want
DateIndexStart Date End Date
Wed, 01 Mar 2023 07:00:530Wed, 01 Mar 2023 07:00:53Wed, 01 Mar 2023 07:01:12
Wed, 01 Mar 2023 07:01:121Wed, 01 Mar 2023 07:01:12Wed, 01 Mar 2023 07:01:23
Wed, 01 Mar 2023 07:01:232Wed, 01 Mar 2023 07:01:23Wed, 01 Mar 2023 07:01:31
Wed, 01 Mar 2023 07:01:313Wed, 01 Mar 2023 07:01:31Wed, 01 Mar 2023 07:07:30
Wed, 01 Mar 2023 07:07:304Wed, 01 Mar 2023 07:07:30Wed, 01 Mar 2023 07:09:06
Wed, 01 Mar 2023 07:09:065Wed, 01 Mar 2023 07:09:06 

Hi @Leslie1015,

You can create two calculate columns to achieve your requirement. The start date reference from the raw date field, the end date use current index field value to lookup the next row date value.

StartDate= 'Table'[Date]

EndDate = 
    CALCULATE(
        MAX('Table'[Date]),
        FILTER(
            ALL('Table'),
            'Table'[Index] = EARLIER('Table'[Index]) + 1
        )
    )

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
Europe Fabric Conference

Europe’s largest Microsoft Fabric Community Conference

Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.

RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

MayPowerBICarousel1

Power BI Monthly Update - May 2024

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