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

Join us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.

Reply
Balaraju
Helper III
Helper III

How To split alternative rows into different name

Hi All Good Morning,

 

I have one scenario like a time column having time for every day based on user ID, time column will give the in and out the tracking of the user. Consider every day first-time stamp is In next timestamp is out same vice versa.

Could you please see the below data so you can get a better understanding? adding input and expecting out results.

 

Balaraju_0-1661323496923.png

 

 

 

Please help out on it.

Regards,

Balaraju.

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

Hi @Balaraju,

 

Please create an index column in Power Query.

vyadongfmsft_0-1661506649582.png

 

Then try following DAX:

Type = 
var cur_index='table'[Index]
var confirm=MOD(cur_index,2)
return
IF(confirm=0,"Out","In")

 

You can get result you want.

vyadongfmsft_1-1661506649587.png

 

Best regards,

Yadong Fang

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

View solution in original post

6 REPLIES 6
v-yadongf-msft
Community Support
Community Support

Hi @Balaraju,

 

Please create an index column in Power Query.

vyadongfmsft_0-1661506649582.png

 

Then try following DAX:

Type = 
var cur_index='table'[Index]
var confirm=MOD(cur_index,2)
return
IF(confirm=0,"Out","In")

 

You can get result you want.

vyadongfmsft_1-1661506649587.png

 

Best regards,

Yadong Fang

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

HoangHugo
Solution Specialist
Solution Specialist

Hi

My idea, I will base on number of time recorded to define "In" mean Odd number, "Out" mean Even Number

 

column

Output = if (MOD(COUNTROW(CALCULATETABLE(table, Date = EARLIER (Date), Time <= EARLIER (Time),2) =0,"Out","In")

Sorry It is not working

 

Can you share notice after create Column?, make sure your Date column Time column in right type (Date/Time) to make comparision.

Balaraju_0-1661326562706.jpeg

 

yes, use right opening and closing to make right EARLIER function

EARLIER(Attendance[Date])

EARLIER(Attendance[Time])

 

Helpful resources

Announcements
July PBI25 Carousel

Power BI Monthly Update - July 2025

Check out the July 2025 Power BI update to learn about new features.

Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 community update carousel

Fabric Community Update - June 2025

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