> ## Documentation Index
> Fetch the complete documentation index at: https://www.integrate.io/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# ETL: MinutesBetween

> Calculate the number of minutes between two datetime values using a fractional rounding method. Compare with DATEDIFFMINUTES for other behavior.

## Description

Returns the number of minutes between the end\_datetime and the start\_datetime.

## Syntax

`MinutesBetween(end_datetime, start_datetime)`

## Arguments

*end\_datetime* - datetime expression.

*start\_datetime* - datetime expression.

## Examples

`MinutesBetween(ToDate('2013-09-10T08:02:31.667Z'),ToDate('2012-03-03T13:34:39.648Z'))` returns 800307

## Return value datatype

Long

## Impact of null value

If input is null, returns null.
