I have set a calculated field in a report. Max([Action.Date]+ 180).
This works fine in the report, but I want to change it to 6 months.
Would someone help me with this?
I do not know code.
Try
Max(DateAdd("m", 6, [Action Date]))

Signature
HTH
Van T. Dinh
MVP (Access)
> I have set a calculated field in a report. Max([Action.Date]+ 180).
> This works fine in the report, but I want to change it to 6 months.
>
> Would someone help me with this?
>
> I do not know code.