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

The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more

Reply
onevagi
Regular Visitor

Time Frame

Hi,

 

I have column which includes timeframe of 30 minutes for a day (Example: 00:00:00, 00:30:00, 01:00:00, 01:30:00.... till 23:30:00). I have created a Line and clustered column chart, the timeframe is in the X-Axis and I need the timeframe only from 08:00 to 20:00, So basically I need timeslice of the timeframe which I have. Any solution would be of great help. Thanks.

 

Kind Regards,

Omkar

1 ACCEPTED SOLUTION
Alican_C
Resolver II
Resolver II

You can use the following steps:

  1. Create a new calculated column to mark the rows that fall within the desired timeframe.

  2. Filter the visual by the use of new column

 

1. Creating the calculated column:


IsWithinTimeframe = IF(HOUR([TimeColumn]) >= 8 && HOUR([TimeColumn]) < 20,1,0)

 

2. Filtering the data:

 

  • Go to the "Filters" pane.
  • Drag the new IsWithinTimeframe column to the "Filters on this visual" area.
  • Set the filter to only include rows where IsWithinTimeframe is 1.

 

 

View solution in original post

2 REPLIES 2
Alican_C
Resolver II
Resolver II

You can use the following steps:

  1. Create a new calculated column to mark the rows that fall within the desired timeframe.

  2. Filter the visual by the use of new column

 

1. Creating the calculated column:


IsWithinTimeframe = IF(HOUR([TimeColumn]) >= 8 && HOUR([TimeColumn]) < 20,1,0)

 

2. Filtering the data:

 

  • Go to the "Filters" pane.
  • Drag the new IsWithinTimeframe column to the "Filters on this visual" area.
  • Set the filter to only include rows where IsWithinTimeframe is 1.

 

 

Hi,

 

Thank you so much for the help. It worked. Cheers 🙂

Helpful resources

Announcements
Power BI DataViz World Championships

Power BI Dataviz World Championships

The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!

December 2025 Power BI Update Carousel

Power BI Monthly Update - December 2025

Check out the December 2025 Power BI Holiday Recap!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.