Skip to main content
Solved

Return next week's date relative to Today

  • August 8, 2023
  • 1 reply
  • 0 views

Forum|alt.badge.img+3

Hello, I'm trying to return the date in a field based on the urgency selected in another field. For example, if the urgency is "As soon as possible" the date should return today's date which I'm able to get with TODAY() formula. However, I couldn't manage to get next week's date with TODAY() + 7 as I would do in Excel. What is the correct formula would be for that? Thank you! 

Best answer by Ron_Williams

Hello. This should work:
IF(urgency="As soon as possible",TODAY(),DATEADD(TODAY(),7,'days'))

 

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

1 reply

Forum|alt.badge.img+9
  • Inspiring
  • 30 replies
  • Answer
  • August 8, 2023
Hello. This should work:
IF(urgency="As soon as possible",TODAY(),DATEADD(TODAY(),7,'days'))

 


Reply