Skip to content

AddMilliseconds

Shaun Lawrence edited this page Aug 13, 2020 · 2 revisions

Returns the supplied date/time with the specified number of milliseconds added.

AddMilliseconds(date, numberOfMilliseconds)

Parameters

date

The date/time that will have the numberOfMilliseconds added.

Type DateTime
Required Yes

numberOfMilliseconds

The number of milliseconds to add to the date.

Type Double
Required Yes

Examples

AddMilliseconds(#now#, 2)

Adds 2 milliseconds to the current date/time.

AddMilliseconds(#now#, -2)

Subtracts 2 milliseconds from the current date/time.