Hello Maya
I’m not sure I understand what you want
But if you want to return the week number of a date (eg : fieldname = “Campaign Date”) based on the first of november 2021, you can add a formula field: “Campaign Week”
1+DATETIME_DIFF(
{Campaign Date},
DATETIME_PARSE(“11/01/2021”,“MM/DD/YYYY”),
‘w’
)
You add 1 so that first week is 1 , not 0