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

Filter Start Time

Hello,

 

Need some help with my new project. I'm still learning on how to code, and i got stucked on the following.

Below is my table.

 

Time StampHour# of Cases
11/11/19 7:04 AM71
11/11/19 6:44 AM61
11/11/19 6:51 AM61
11/11/19 8:01 AM81
11/11/19 7:07 AM71
11/11/19 8:56 AM81
11/11/19 9:14 AM91
11/11/19 8:04 AM81
11/11/19 8:14 AM81
11/11/19 9:47 PM211
11/11/19 11:22 PM231
11/11/19 11:58 PM231
11/12/19 12:43 AM01
11/12/19 2:03 AM21
11/12/19 2:42 AM21
11/12/19 2:43 AM21
11/12/19 2:49 AM21
11/12/19 3:41 AM31
11/12/19 3:43 AM31
11/12/19 4:39 AM41
11/12/19 4:26 AM41
11/12/19 5:38 AM51
11/12/19 5:40 AM51
11/12/19 4:56 AM41

 

Basically im making a graph that show how many cases each hour.

But i want to put a Filter that drop down a Date. (I want the user to just pick the date they want to see)

 

But the twist is. Example if the drop down i choose is 11/12/19, i want it to show the hours from 11/11/19 Hour 21 up to hour 20 of 11/12.

 

Basically hour start time is from 10PM up to 9:59PM(next day). hope it makes sense. Thank you!

 

312312312.JPG

 

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

Hi @pamboys09 ,

 

Please check following steps as below:

1. Create calculated table as slicer:

Table 2 = CALENDARAUTO()

2. Create measure:

Measure =

VAR td =

    FORMAT ( SELECTEDVALUE ( 'Table 2'[Date] ), "YYYYMMDD" ) & 20

VAR pd =

    FORMAT ( PREVIOUSDAY ( 'Table 2'[Date] ), "YYYYMMDD" ) & 21

RETURN

    CALCULATE (

        SUM ( 'Table'[# of Cases] ),

        FILTER (

            'Table',

            FORMAT ( 'Table'[Time Stamp], "YYYYMMDDHH" ) >= pd

                && FORMAT ( 'Table'[Time Stamp], "YYYYMMDDHH" ) <= td

        )

    )

3. Result would be shown as below:

1.PNG

2.PNG

BTW, Pbix as attached, hopefully works for you.

 

Best Regards,

Jay

 

Community Support Team _ Jay Wang

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Community Support Team _ Jay
If this post helps, then please consider Accept it as the solution
to help the other members find it.

View solution in original post

2 REPLIES 2
v-jayw-msft
Community Support
Community Support

Hi @pamboys09 ,

 

Please check following steps as below:

1. Create calculated table as slicer:

Table 2 = CALENDARAUTO()

2. Create measure:

Measure =

VAR td =

    FORMAT ( SELECTEDVALUE ( 'Table 2'[Date] ), "YYYYMMDD" ) & 20

VAR pd =

    FORMAT ( PREVIOUSDAY ( 'Table 2'[Date] ), "YYYYMMDD" ) & 21

RETURN

    CALCULATE (

        SUM ( 'Table'[# of Cases] ),

        FILTER (

            'Table',

            FORMAT ( 'Table'[Time Stamp], "YYYYMMDDHH" ) >= pd

                && FORMAT ( 'Table'[Time Stamp], "YYYYMMDDHH" ) <= td

        )

    )

3. Result would be shown as below:

1.PNG

2.PNG

BTW, Pbix as attached, hopefully works for you.

 

Best Regards,

Jay

 

Community Support Team _ Jay Wang

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Community Support Team _ Jay
If this post helps, then please consider Accept it as the solution
to help the other members find it.
Anonymous
Not applicable

Woah, thank you very much this is the one I'm looking for. thanks again!

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.