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

Get certified in Microsoft Fabric—for free! For a limited time, the Microsoft Fabric Community team will be offering free DP-600 exam vouchers. Prepare now

Reply
Y-Hernandez99P
Frequent Visitor

How can I check if an hour-type field is in a time range?

Good morning, my question is how can I check if the x column is in a time range? for example, from 3pm to 4pm?

Thanks for reading.

Here I show how the data is

erre.png

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

Hi @Y-Hernandez99P ,

Create a measure as below:

Measure 2 = 
var a =HOUR(SELECTEDVALUE('Table (2)'[Time]))
Return
IF(a>=15&&a<=16,1,0)

And you will see:

Annotation 2020-04-30 141130.png

The rows which return 1 are in the time period from 3pm to 4pm.

Best Regards,
Kelly
Did I answer your question? Mark my post as a solution!

View solution in original post

3 REPLIES 3
v-kelly-msft
Community Support
Community Support

Hi @Y-Hernandez99P ,

Create a measure as below:

Measure 2 = 
var a =HOUR(SELECTEDVALUE('Table (2)'[Time]))
Return
IF(a>=15&&a<=16,1,0)

And you will see:

Annotation 2020-04-30 141130.png

The rows which return 1 are in the time period from 3pm to 4pm.

Best Regards,
Kelly
Did I answer your question? Mark my post as a solution!
amitchandak
Super User
Super User

You can use Hour function to get the hour to add one to it

 

Hour = Hour([Hora1])

Hour end = Hour([Hora1]) +1

Join us as experts from around the world come together to shape the future of data and AI!
At the Microsoft Analytics Community Conference, global leaders and influential voices are stepping up to share their knowledge and help you master the latest in Microsoft Fabric, Copilot, and Purview.
️ November 12th-14th, 2024
 Online Event
Register Here
camargos88
Community Champion
Community Champion

@Y-Hernandez99P ,

 

You can use the TIME function and IF.

 

https://docs.microsoft.com/en-us/dax/time-function-dax

 

Ricardo



Did I answer your question? Mark my post as a solution!

Proud to be a Super User!



Helpful resources

Announcements
OCT PBI Update Carousel

Power BI Monthly Update - October 2024

Check out the October 2024 Power BI update to learn about new features.

September Hackathon Carousel

Microsoft Fabric & AI Learning Hackathon

Learn from experts, get hands-on experience, and win awesome prizes.

October NL Carousel

Fabric Community Update - October 2024

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