Hi all, I think I might be missing something rather simple...help is appreciated!
I have a report of transactions that occurred throughout the quarter. I have the actual date of each. I was hoping to create a new field that formats the date to be the week ending date so I can summarize.
For example, all the transaction May 20th - 26th would display May 26th. All transactions May 27th - June 2nd would display June 2nd etc.
I'm not sure if Alteryx workweek would be Sunday - Saturday, Monday - Sunday etc. so perfectly fine if I need to modify the above a little bit. Either way I want weekly trends.
My current dates are formatted as such: "4/30/2024 23:25" I figured this is relevant to my question.
Thank you so much!
Solved! Go to Solution.
@Anweinbe
We can do some magic with the DateTime function.
We first find the day of Week as integer and add the difference with 7 to current day.
%u Day of week as a decimal, 1 to 7, with Monday as 1.
@Anweinbe
Glad to know that.