Not sure how to take my current expression and get the week ending date of the week.
My current expression returns the date, one week from today.
DateAdd(DateInterval.WeekOfYear, 1, today())
What I want to do instead is return the end date (Saturday) of that week instead.
What do I need to add to this expression to get the desired result?
Thanks!