I have an array of dates:
2459725, 2459237, 2459269, 2459298, 2459331, 2459360, 2459390, 2459422, 2459453, 2459482, 2459513, 2459542, 2459569, 2459604, 2459634, 2459664, 2459695, 2459215, 2459597, 2459225, 2459246, 2459256, 2459271, 2459284, 2459277, 2459282, 2459299
And I need to determine the latest date among them. Trying to use max( produces an error that max requires at least two parameters.
max(DateArray)
So in spite of the array using commas as separators, the array is seen as a single parameter. Is there a way to overcome this?