Forum Discussion
Anonymous
3 years agoNot applicable
Filter dates before current week
Hello, I have the following table in Power Query and i am trying to filter all rows based on the Start date before the Monday date of the current week. Is this possible? Any help is much appreciated...
- 3 years ago
Hi Anonymous ,
Try this:
Table.SelectRows( previousStepName, each [Start date] < Date.StartOfWeek(Date.From(DateTime.LocalNow()), Day.Monday) )Pete
wdx223_Daniel
Community Champion
3 years ago=Table.SelectRows(PreviousStepName,each [Start date]<Date.StartOfWeek(Date.From(DateTime.LocalNow()),Day.Monday))