The 1C:Enterprise developers forum
How do I add or hours and minutes CurrentDate()AddMonth(CurrentDate(),1);AddHours()=?
Hi, Mehmet!You can add seconds to date, so if you want to add minutes you must multiply by 60, for hours - multiply by 3600.
PlusTenMinutes = CurrentDate() + 10 * 60; PlusFourHours = CurrentDate() + 4 * 3600;
thank you so much