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
Rsanjuan
Helper IV
Helper IV

Creating Individual Dates based on Week of field

 

Is there a way to create individual dates if you have only a week of (based on Sunday) field and names of days?

 

 For example, I have the following:

 

Week of          Monday      Tuesday    Wednesday    Thursday     Friday     Saturday

 

8/14/16               8                                        8                 8                              4

 

4/30/17                                   8                    8

 

There are no dates associated with the days.  Under each of those days are number of hours and would like to add the hours based on not the week of field but on individual dates using a time slicer.

 

1 ACCEPTED SOLUTION
Sean
Community Champion
Community Champion

In the Query Editor

1) Select Week Of  column - Transform tab - Unpivot Other Columns

2) Add Column Tab - Add Conditional Column - and name Number

 Add Conditional Column.png

3) right-click Number column and change type to whole number

4) Add Column Tab - Add Custom Column - and name it Date

= Date.AddDays([Week Of], -[Number])

That should do it!

QE - Convert End of Week to Date.png

@MarcelBeugis there an easier way?

View solution in original post

2 REPLIES 2
Sean
Community Champion
Community Champion

In the Query Editor

1) Select Week Of  column - Transform tab - Unpivot Other Columns

2) Add Column Tab - Add Conditional Column - and name Number

 Add Conditional Column.png

3) right-click Number column and change type to whole number

4) Add Column Tab - Add Custom Column - and name it Date

= Date.AddDays([Week Of], -[Number])

That should do it!

QE - Convert End of Week to Date.png

@MarcelBeugis there an easier way?

MarcelBeug
Community Champion
Community Champion

This would be my solution:

 

let
    Source = Input,
    DayNames = List.Transform({0..6}, each Date.DayOfWeekName(Date.AddDays(Source{0}[Week of],_),"en-US")),
    #"Unpivoted Other Columns" = Table.UnpivotOtherColumns(Source, {"Week of"}, "Attribute", "Value"),
    #"Added Custom" = Table.AddColumn(#"Unpivoted Other Columns", "Date", each Date.AddDays([Week of],List.PositionOf(DayNames,[Attribute]))),
    #"Removed Other Columns" = Table.SelectColumns(#"Added Custom",{"Date", "Value"})
in
    #"Removed Other Columns"
Specializing in Power Query Formula Language (M)

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.