AddDays (PQL)

Returns a new date-time with the number of days added

Syntax

AddDays( <Column DateTime> , <Integer> )

* Click on the function's arguments above for more details on the input values.

Comments
  • The column needs to be an attribute with date-time values in the model. (The data type needs to be 'date-time')
  • Use a positive integer to count days forward from each date in the column, in order to return a dates after the original date.
  • Use negative integers to return a specified day prior to each date in the column.
  • For details on how to employ and use this function see the custom column overview.
Different Function types
  • This function is similar to the PQL semantic and common functions of the same name. However, it operates on a column directly at the grain.
  • As a granular function, it is used in the base SQL query itself.

Examples

This example adds 10 days to each date in the Order Date column.

AddDays( [Data].[OrderDate], 10 )

If the figure had been set to "-10" the result would reduce 10 days from each date in the column.

You can see the effect from this example snippet in column #2, based on the original date column in position #1.