Logo
  • Portfolio
  • Blog
  • About
  • Resources
Get in touch!
Logo

Portfolio

Blog

Resources

About

Contact

Notion Status

© 2025 Hyphen Productivity

YouTubeLinkedInWhatsAppPinterest
Checking if date falls within last week, next week or this week

Checking if date falls within last week, next week or this week

Type
Date

Checking if date falls within last week, next week or this week

ifs(
    (and(
        today().year() == prop("Date").year(),
        today().week() == prop("Date").week()
    )), "This week",
    
    (and(
        today().year() == prop("Date").year(),
        today().week()-1 == prop("Date").week()
    )), "Last week",
    
    (and(
        today().year() == prop("Date").year(),
        today().week()+1 == prop("Date").week()
    )), "Next week",
    
    ""
)