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
BA_Pete
Super User
3 years agoHi Anonymous ,
Try this:
Table.SelectRows(
previousStepName,
each [Start date] < Date.StartOfWeek(Date.From(DateTime.LocalNow()), Day.Monday)
)
Pete