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

Time Buckets in Power BI

Hi everyone

I have created a new table with "Enter Data" option. I want to use this table for bucketing. Please see the following two tables.

I want to calculate "Total Accidents" by Timeinterval. for example

how many accidents occured in between 07:00 - 12:00 19:00-06:00 and 13:00-18:00

and want to show in a column bar chart.

table.JPG

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

Hi @Anonymous,

 

To create a mreasure as below.

 

Measure = 
VAR mas =
    MAX ( Timeinterval[Starttime] )
VAR mae =
    MAX ( Timeinterval[Endtime] )
RETURN
    IF (
        mas < mae,
        CALCULATE (
            SUM ( trafficAccident[Total Accidents] ),
            FILTER (
                ALL ( trafficAccident ),
                trafficAccident[Accident time] >= mas
                    && trafficAccident[Accident time] <= mae
            )
        ),
        IF (
            mas > mae,
            CALCULATE (
                SUM ( trafficAccident[Total Accidents] ),
                FILTER (
                    ALL ( trafficAccident ),
                    trafficAccident[Accident time] >= mas
                        || trafficAccident[Accident time] <= mae
                )
            )
        )
    )

Capture.PNG

For more details ,please check the pbix as attached.

 

Regards,

Frank

Community Support Team _ Frank
If this post helps, then please consider Accept it as the solution to help the others find it more quickly.

View solution in original post

4 REPLIES 4
v-frfei-msft
Community Support
Community Support

Hi @Anonymous,

 

To create a mreasure as below.

 

Measure = 
VAR mas =
    MAX ( Timeinterval[Starttime] )
VAR mae =
    MAX ( Timeinterval[Endtime] )
RETURN
    IF (
        mas < mae,
        CALCULATE (
            SUM ( trafficAccident[Total Accidents] ),
            FILTER (
                ALL ( trafficAccident ),
                trafficAccident[Accident time] >= mas
                    && trafficAccident[Accident time] <= mae
            )
        ),
        IF (
            mas > mae,
            CALCULATE (
                SUM ( trafficAccident[Total Accidents] ),
                FILTER (
                    ALL ( trafficAccident ),
                    trafficAccident[Accident time] >= mas
                        || trafficAccident[Accident time] <= mae
                )
            )
        )
    )

Capture.PNG

For more details ,please check the pbix as attached.

 

Regards,

Frank

Community Support Team _ Frank
If this post helps, then please consider Accept it as the solution to help the others find it more quickly.

Hi @Anonymous,

 

Does that make sense? If so, kindly mark my answer as a solution to close the case.


Regards,
Frank

Community Support Team _ Frank
If this post helps, then please consider Accept it as the solution to help the others find it more quickly.
Anonymous
Not applicable

Hi Frank

THankyou very much for your help. 

I really appreciate that

Regards

Asim/skiper

Greg_Deckler
Super User
Super User


Take a look at these two Quick Measures as I think you want something like them.

https://community.powerbi.com/t5/Quick-Measures-Gallery/Open-Tickets/m-p/409364
https://community.powerbi.com/t5/Quick-Measures-Gallery/Periodic-Billing/m-p/409365


@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

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.