Notion Formula Explained: Property 1 + Property 2 Using dateAdd

Learn step-by-step how to use Notion formulas to add Property 1 and Property 2 with dateAdd. Master the syntax and practical applications for project scheduling and deadline automation.

Apr 2, 2025
This guide will help you learn how to use the dateAdd(date, number, unit) formula to add time/date to your date properties. This is ideal if you want to manipulate your date properties for automating deadlines, scheduling events, and streamlining your Notion workflow.

dateAdd Function

The dateAdd() function in Notion is a versatile tool for dynamic date calculations. It follows the syntax:
dateAdd(date, number, unit)
The parameters are defined as:
  • date: A valid date property (e.g., prop("Start Date") or now()).
  • number: A numeric value determining how much time to add. This can be a literal or derived from another property.
  • unit: A string indicating the time unit—such as "days", "months", or "years" (other valid units include "weeks" or "hours").
notion image

Examples:

  1. Computes a date one week later.
    1. dateAdd(prop("Start Date"), 7, "days")
  1. Calculates a date two months ahead.
    1. dateAdd(prop("Start Date"), 2, "months")
  1. Subtracts one year from the given date.
    1. dateAdd(prop("Start Date"), -1, "years")

You can nest functions and perform arithmetic to address complex scheduling:
  1. Adds one year, then fifteen days.
    1. dateAdd(dateAdd(prop("Start Date"), 1, "year"), 15, "days")
The same principle applies to dynamically adjusting dates.
  1. To add a numeric Duration property to a Start Date property, use:
    1. dateAdd(prop("Start Date"), prop("Duration"), "days")
 

Practical Applications in Project Management

  1. Use dynamic calculations (e.g., dateAdd(prop("Start Date"), prop("Duration"), "days")) to auto-set task deadlines, reducing manual adjustments.
  1. Schedule events and project timelines efficiently by linking numeric properties (like offset days) to base dates.
  1. Automate workflows by integrating calculated dates into reminders and milestones, streamlining project tracking.
  1. Adapt formulas easily to various project scenarios by modifying numeric inputs or switching units (days, weeks, months) based on context.
  1. Combine property arithmetic with dateAdd for scenarios such as buffer time allocation or iterative deadline extensions, enhancing resource planning and risk management.

FAQs

What is the basic syntax of the dateAdd function in Notion?
The syntax is: dateAdd(date, number, unit). Here, 'date' is a date property, 'number' is the value to add, and 'unit' is a string like "days", "months", etc.
How does the '+' operator work with Notion properties?
The '+' operator performs arithmetic addition on numeric properties, allowing you to sum values from two fields (e.g., Property1 + Property2).
Can I use arithmetic operations with date properties in Notion?
Arithmetic operations don’t directly apply to date properties. Instead, use date functions like dateAdd to manipulate dates.
What are the supported time units for the dateAdd function?
Supported units include "years", "quarters", "months", "weeks", "days", "hours", "minutes", and sometimes "seconds" or "milliseconds", depending on context.
How do I combine Property 1 (date) and Property 2 (number) in a formula?
Combine them using: dateAdd(prop("Property1"), prop("Property2"), "unit"). Replace "unit" with the desired time unit such as "days".
Is it possible to perform nested dateAdd calculations in Notion?
Yes, you can nest dateAdd functions to sequentially modify dates, allowing for complex, multi-step date calculations.
What are the best practices for managing and troubleshooting Notion formulas?
Use clear property names, test formula components individually, ensure correct data types, and maintain consistent syntax—whether using functional or dot-notation styles.
How can I apply these formulas to project management and scheduling?
Use dateAdd formulas to set deadlines, calculate future dates for milestones, and adjust timelines dynamically based on numeric inputs from your project data.
Can I use negative values in the dateAdd function to subtract time?
Yes, by providing a negative number as the second argument, dateAdd subtracts the specified time from the date.
 
 
 
 
notion image
 
 

Build apps from Notion databases

notion image