Is there a way to to retrieve certain data when it is within 30 days of its end date

0
Hi I am currently working on an application and i want to show a list of items when there end dates are withing 30 days of the end date. how can i best do that?
asked
1 answers
1

Create a variable addDays(currentdate, 30) and retrieve the objects with enddate <= variable

would do the trick I suppose.

answered