Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
DATEADD( 'day', -1, DATEADD( 'week', 1, DATETRUNC( 'week', [insp DateCreated] )))
Solved! Go to Solution.
Hi, @Anonymous
Based on your description, I created data to reproduce your scenario.
You may create a calculated column as below.
modified date = 'Table'[insp DateCreated]-(WEEKDAY('Table'[insp DateCreated])-1)+7-1
Result:
If I misunderstand your thought, please show me your expected result. Do mask sensitive data before uploading. Thanks.
Best Regards
Allan
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi, @Anonymous
If you take the answer of someone, please mark it as the solution to help the other members who have same problems find it more quickly. If not, let me know and I'll try to help you further. Thanks.
Best Regards
Allan
Hi, @Anonymous
Based on your description, I created data to reproduce your scenario.
You may create a calculated column as below.
modified date = 'Table'[insp DateCreated]-(WEEKDAY('Table'[insp DateCreated])-1)+7-1
Result:
If I misunderstand your thought, please show me your expected result. Do mask sensitive data before uploading. Thanks.
Best Regards
Allan
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
@Anonymous
Does it convert the date to week and add 1 week and subtract 1 day?
Trying to identify end of week?
[Date] + 7 - WEEKDAY([DATE],2)
Refer to this post..
If it helps, mark it as a solution
Kudos are nice too.