Forum Discussion
ezFlow
4 years agoFrequent Visitor
Creating a weekly end dates table from existing dates
I have a table f items inspected that is coming from a SharePoint list. Using the "created date" I would like to create a table that has end of week dates For example for January it woud have a ta...
- Anonymous4 years ago
Hi ezFlow ,
I have create a data sample:
Please use CALENDAR() to create a new table:
New Table = FILTER( CALENDAR(MIN('Table'[created date]),MAX('Table'[created date])) ,WEEKDAY([Date],2)=5)Best Regards,
Eyelyn Qin
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Anonymous
4 years agoNot applicable
Hi ezFlow ,
I have create a data sample:
Please use CALENDAR() to create a new table:
New Table =
FILTER( CALENDAR(MIN('Table'[created date]),MAX('Table'[created date])) ,WEEKDAY([Date],2)=5)
Best Regards,
Eyelyn Qin
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.