I generate records through the week that all pertain to an event on Saturday. For organising these records into a week-by-week historical view (and for ease of human use on Saturday), I want to be able to automatically tag all of these records for the Saturday they pertain to.
I have searched and tried a few things - this is the formula I got closest with:
IF(WEEKDAY(Created)=6,
DATEADD(Created,0,"days"),
DATEADD(Created,6+WEEKDAY({Created}),"days"))
Where "Created" is the date the record is generated.
However, this generates a record for the previous Saturday. I don't really understand the formula I've cobbled together from old threads well enough to understand why.
Does anyone have any advice to get it to fill that date as the following saturday from the "date created"?