Skip to main content
Solved

This Week formula for a due date


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

Best answer by ScottWorld

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'

)
View original
Did this topic help you find an answer to your question?

2 replies

ScottWorld
Forum|alt.badge.img+20
  • Brainy
  • 8711 replies
  • Answer
  • September 1, 2020

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'

)

  • Author
  • Known Participant
  • 27 replies
  • September 1, 2020
ScottWorld wrote:

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'

)

Thanks ALot Scott, I was trying the same thing but was writing the wrong format . This one works like a charm, Appreciate it


Reply