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

Next up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register now

Reply
Anonymous
Not applicable

Count how many times a date appears between start date and end date

Hello,

 

I'm new to DAX. I hope you can help?

 

I have a table with start date and end date columns. I would like to add a column that counts how many times the start date from other rows in the table appear between the start date and end date of each row and if the start date doesn't appear, it then checks if the end date appears between the start and end date in each row.

 

Is the formula for this? It basically an overlap of dates and times

 

Thanks

Joe

 

Start Date                              End Date                                      Count

01/01/2018 00:00:00              01/01/2018 01:45:00                        4

01/01/2018 00:00:00              01/01/2018 01:45:00                        4

01/01/2018 00:00:00              01/01/2018 01:45:00                        4

01/01/2018 01:00:00              01/01/2018 02:45:00                        5

01/01/2018 02:00:00              01/01/2018 03:45:00                        2

2 ACCEPTED SOLUTIONS
Zubair_Muhammad
Community Champion
Community Champion

@Anonymous

 

Try this Column

 

Count Column =
COUNTROWS (
    FILTER (
        table1,
        OR (
            [Start Date] >= EARLIER ( [Start Date] )
                && [Start Date] <= EARLIER ( [End Date] ),
            [End Date] >= EARLIER ( [Start Date] )
                && [End Date] <= EARLIER ( [End Date] )
        )
    )
)

View solution in original post

Hi @Anonymous

 

Hello Joe

 

You can use this revised formula

 

Column 2 =
COUNTROWS (
    FILTER (
        table1,
        AND (
            OR (
                [Start Date] >= EARLIER ( [Start Date] )
                    && [Start Date] <= EARLIER ( [End Date] ),
                [End Date] >= EARLIER ( [Start Date] )
                    && [End Date] <= EARLIER ( [End Date] )
            ),
            [ID] = EARLIER ( [ID] )
        )
    )
)

View solution in original post

5 REPLIES 5
Zubair_Muhammad
Community Champion
Community Champion

@Anonymous

 

Try this Column

 

Count Column =
COUNTROWS (
    FILTER (
        table1,
        OR (
            [Start Date] >= EARLIER ( [Start Date] )
                && [Start Date] <= EARLIER ( [End Date] ),
            [End Date] >= EARLIER ( [Start Date] )
                && [End Date] <= EARLIER ( [End Date] )
        )
    )
)
Anonymous
Not applicable

Hello Zubair

 

If you have the time,

 

I would like to show in another column the same result, but counting with the ID within the timeframe. Basically the formula, but showing the filterd results based on the ID

 

ID                                   Start Date                              End Date                               CountAll Dates        Count ID

Bag                            01/01/2018 00:00:00             01/01/2018 01:45:00                        4                            2

Bag                            01/01/2018 00:00:00             01/01/2018 01:45:00                        4                            2

Hat                            01/01/2018 00:00:00              01/01/2018 01:45:00                        4                           1

Hat                            01/01/2018 01:00:00              01/01/2018 02:45:00                        5                           2

Hat                            01/01/2018 02:00:00              01/01/2018 03:45:00                        2                           2

 

Kind regards

Joe

Hi @Anonymous

 

Hello Joe

 

You can use this revised formula

 

Column 2 =
COUNTROWS (
    FILTER (
        table1,
        AND (
            OR (
                [Start Date] >= EARLIER ( [Start Date] )
                    && [Start Date] <= EARLIER ( [End Date] ),
                [End Date] >= EARLIER ( [Start Date] )
                    && [End Date] <= EARLIER ( [End Date] )
            ),
            [ID] = EARLIER ( [ID] )
        )
    )
)
Anonymous
Not applicable

Hi Zubair

 

It worked perfectly, thank you so much! 

 

Kind regards

Joe

Anonymous
Not applicable

Thank you Zubair

 

You have thought me two lessons. 

 

1. The formula

2. To ask for help sooner 🙂

 

Kind regards

Joe

Helpful resources

Announcements
New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

March Power BI Update Carousel

Power BI Community Update - March 2026

Check out the March 2026 Power BI update to learn about new features.