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
vminvsky
Frequent Visitor

How to emphasize a specific time point on a time x-axis.

Hi,

 

Overview:

I have an x-axis on a bar graph that is made of 10 minute periods of time throughout the day. 

 

I did some cluster analysis to cluster the day into periods of high demand. In other words, I have the range of time when demand is high in the morning and I have the range of time when demand is high in the evening. 

 

For the morning high demand, I want to emphasize the two end points that show the range of high demand. How can I do this? I will also then do this for the evening too.

 

Thanks ahead of time.

 

 

1 ACCEPTED SOLUTION
jdbuchanan71
Super User
Super User

Hello @vminvsky 

You are looking for something like this?

GroupedTimes.jpg

I needed to add a table with the time groups then a measure to calcualte the groupings.

TimeGroupsTable.jpg

Grouped Measure = 
CALCULATE (
    [RowCount],
    FILTER (
        VALUES ( 'Table'[Time] ),
        COUNTROWS (
            FILTER (
                Times,
                MAX ( 'Table'[Time] ) > Times[min]
                && MAX ( 'Table'[Time] ) <= Times[max]
            )
        ) > 0
    )
)

The attached file has the sample data and grouping table along with the measure.

View solution in original post

2 REPLIES 2
jdbuchanan71
Super User
Super User

Hello @vminvsky 

You are looking for something like this?

GroupedTimes.jpg

I needed to add a table with the time groups then a measure to calcualte the groupings.

TimeGroupsTable.jpg

Grouped Measure = 
CALCULATE (
    [RowCount],
    FILTER (
        VALUES ( 'Table'[Time] ),
        COUNTROWS (
            FILTER (
                Times,
                MAX ( 'Table'[Time] ) > Times[min]
                && MAX ( 'Table'[Time] ) <= Times[max]
            )
        ) > 0
    )
)

The attached file has the sample data and grouping table along with the measure.

Thank you!

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.