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

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

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!:
Mastering Power BI 2nd Edition

DAX is easy, CALCULATE makes DAX hard...

Helpful resources

Announcements
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

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