I have sharepoint list with data and one of the columns contains date ... how can i programmatically retrieve the latest date, the field is a Date And Time type?
Tell me more
×
SharePoint Stack Exchange is a question and answer site for
SharePoint enthusiasts. It's 100% free, no registration required.
|
You need to order by the column (descending), then set the query's rowlimit to 1:
From here: SO: MAX query using CAML |
|||
|
|
|
You can use foreach loop against your list's date column and then compare it with datetime.now to get latest date. |
|||
|
|