Sep 01, 2020 03:11 AM
Hi Folks, I need help writing a formula that returns only data for this week related to a release date
I know this formula works IF(WEEKNUM({Release Date})=WEEKNUM(TODAY()),“this week”,“NOT”)
However, it still shows me content released for the next year same as this week. I only want to work on the current year not all years in my view.
Thanks, A lot for your time
Solved! Go to Solution.
Sep 01, 2020 07:10 AM
There are probably a bunch of different ways to do this, but I would probably just do it this way:
IF(
WEEKNUM({Release Date}) & YEAR({Release Date}) =
WEEKNUM(TODAY()) & YEAR(TODAY()),
"this week",'NOT'
)
Sep 01, 2020 07:10 AM
There are probably a bunch of different ways to do this, but I would probably just do it this way:
IF(
WEEKNUM({Release Date}) & YEAR({Release Date}) =
WEEKNUM(TODAY()) & YEAR(TODAY()),
"this week",'NOT'
)
Sep 01, 2020 07:40 AM
Thanks ALot Scott, I was trying the same thing but was writing the wrong format . This one works like a charm, Appreciate it