cancel
Showing results for 
Search instead for 
Did you mean: 

Date Functions in SAP Crystal REports 2016

0 Kudos

Hi, I'd like to create formula in workshop that takes a date from record and adds a number of days (Credit Terms we have in record) to the date to output a date. How do I do that? Trying to calculate due date of invoice.

Accepted Solutions (0)

Answers (1)

Answers (1)

abhilash_kumar
Active Contributor
0 Kudos

Hi,

You could create a formula that looks like this:

DateAdd("d", 1, {datefield})

You can replace the "1" with a database field if the days to add is also available as a field,

-Abhilash