Sometimes you may want to use a calculation to determine the number of days from a specific date. For example, you may enter a purchase date and want to have a calculation add 30 days to determine the due date of the payment. Use the formula below to add 30 days to a field called PurchaseDate, where the result displays in a field called DueDate. The DueDate formula is
DueDate (Calculation, Date result) =
DATE(YEAR('PurchaseDate'), MONTH('PurchaseDate'), DAY('PurchaseDate'))+30