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 table of dates
January 7th
January 14th
January 21st
January 28th
- 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.
3 Replies
- AnonymousNot 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. - Greg_DecklerCommunity Champion
- ezFlowFrequent Visitor
@ me in replies or I'll lose your thread ???