this works for adding a week to a date
Dim newdate 'add a wreek
Dim mydate
mydate = gridMaster.textmatrix(mintgridMasterCurRow, 3)
newdate = DateAdd("ww", 1, mydate) add a week
gridMaster.textmatrix(mintgridMasterCurRow, 3) = newdate
i need to add 24 hours to a time, how ?
the time is in this format 9:00 AM
Dim newdate 'add a wreek
Dim mydate
mydate = gridMaster.textmatrix(mintgridMasterCurRow, 3)
newdate = DateAdd("ww", 1, mydate) add a week
gridMaster.textmatrix(mintgridMasterCurRow, 3) = newdate
i need to add 24 hours to a time, how ?
the time is in this format 9:00 AM