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

LIST DATE TIME/ PowerQuery / Dax

Greetings Everyone, 

 

I am trying to solve a situation, not very successful at it until now. Can we get a list of date and time in power query or with dax. 

below is the example for what I am trying to achive. 

 

personIdstartdatestarttimeenddateendtimelocation
112/13/202010:19 PM12/15/20203:08 PMA
112/15/20203:08 PM12/16/202010:42 AMB
112/16/202010:42 AM12/23/20204:00 PMB

 

I am trying get a list of date and time for multiple personID to calculate the distinct count at a location based on a given date time. i.e Everyday as of 5:00 am 

 

to put this in a simple context I want to count this personID at one location as of 5 am between the start and end date. 

 

Any help is much appriciated and thank you so much as always. 🙂

 

Dax Help

@PowerQueryFTW 

@dax

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@RK9009 , Try a new column in Dax like

 

new column =
var _1 = date(year([enddate]),month([enddate]),day([enddate])) + time(5,0,0)
return
if( (_1 <=[enddate] && _1 >= [starttime]) && (_1-1 <=[enddate] && _1-1 >= [starttime]) ,"Yes", "No")

View solution in original post

2 REPLIES 2
amitchandak
Super User
Super User

new column =
var _1 = date(year([enddate]),month([enddate]),day([enddate])) + time(5,0,0)
return
if( (_1 <=[enddate] && _1 >= [starttime]) ||  (_1-1 <=[enddate] && _1-1 >= [starttime]) ,"Yes", "No")

amitchandak
Super User
Super User

@RK9009 , Try a new column in Dax like

 

new column =
var _1 = date(year([enddate]),month([enddate]),day([enddate])) + time(5,0,0)
return
if( (_1 <=[enddate] && _1 >= [starttime]) && (_1-1 <=[enddate] && _1-1 >= [starttime]) ,"Yes", "No")

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.

Top Solution Authors