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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
JoSwinnen
Helper I
Helper I

Identify start and end date in a date column

Hi all,

 

I have a table where we keep the absence of our employees like this:

JoSwinnen_0-1652866766127.png

And this is the result I want: For each period of abscence the name, the start date, the end date en the reason of abscence:

JoSwinnen_1-1652866916023.png

 

You cannot group on one or two columns because it will add different periods together. I've tried already something in Power Query by creating gaps between the different periods of abscence per name and then fill in the end date for each period. In this way I can group on name and end date. But it creates no gaps if the name is different and then the end date is not always correct:

JoSwinnen_2-1652867544335.png

I don't know what I can do about this? 

Or does anyone else has a solution for my problem?

 

Thanks in advance!

 

Jo 

 

4 REPLIES 4
JoSwinnen
Helper I
Helper I

@Vijay_A_Verma unfortunatly, it does not work 100%. 

For example if i add a row to my inputtable:

Z     31/01/2022     Personal Reasons

It wil show this as a result: Z      17/01/2022      31/01/2022    Personal Reasons while there normally should be two rows for this. 

 

Any ideas? 

 

Jo 

If Z is added immediately after another Z with same reason of absence, then they will be grouped together. It can't be another row. This logic is being followed for all rows previously. 

Vijay_A_Verma
Super User
Super User

You will need to use GroupKind.Local parameter for grouping.

See the working here - Open a blank query - Home - Advanced Editor - Remove everything from there and paste the below code to test (later on when you use the query on your dataset, you will have to change the source appropriately. If you have columns other than these, then delete Changed type step and do a Changed type for complete table from UI again)

let
    Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45WilDSUTLUN9U3MjAyAjI9c3KUYnVgwmbYhc3RhSPBwoYGMPGA1KLi/LxEFElDfJJG+CSNsUpGQSThLvfIz8lMSaxEcqYhDucbYrg/Ck0cxSJHoICRPtz5IanFJYZIEkbIEkZKsbEA", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type nullable text) meta [Serialized.Text = true]) in type table [Name = _t, Date = _t, #"Reason of absence" = _t]),
    #"Changed Type" = Table.TransformColumnTypes(Source,{{"Name", type text}, {"Date", type date}, {"Reason of absence", type text}}),
    #"Grouped Rows" = Table.Group(#"Changed Type", {"Name", "Reason of absence"}, {{"Start Date", each List.Min([Date]), type nullable date}, {"End Date", each List.Max([Date]), type nullable date}}, GroupKind.Local),
    #"Reordered Columns" = Table.ReorderColumns(#"Grouped Rows",{"Name", "Start Date", "End Date", "Reason of absence"})
in
    #"Reordered Columns"

Great, it works! Thank you very much!!! 

I've tried this approach before, but without the GroupKind.Local. Fantastic that it works by adding this. 

Helpful resources

Announcements
PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

Top Solution Authors
Top Kudoed Authors