Calendar entry

I have a form on saving which the data gets saved in a calendar view. The date on which the data get saved is the current date on which the form is composed. I want to create a dialog list which will contains value as “Next week” ,“Next Month” . on selecting any value and clicking save the form will get saved on that particular date. For ex: if i compose the form today and select “Next week” from the dialog list and click on save the entry should get saved exactly after one week from today.

Is this possible?

Thanks in advance,

Pritam

Subject: Calendar entry

I’m confused by your comment:

For ex: if i compose the form today and select “Next week” from the dialog list and click on save the entry should get saved exactly after one week from today.

I guessing you mean it should be saved but appear on your calendar one week from today. Not saved in a week?

If I am right, all you need to do is use the @adjust to modify the date.

@Adjust(date;year;month;days;hours;minutes;seconds)

Next year just set year = 1 and the rest to 0.

Next Month, set month = 1 and the rest to 0.

Next Week, set days = 7 and the rest to 0.