This property is specific to SharpCloud and is the date in which the item was last modified in any way. This can be a useful property to gauge activity on items.
Type of Data Returned
The function will return the date in which the item was last modified.
Examples
Generating a date that an item needs to be reviewed again, by setting a date 2 months after
lastedited+ 60
Using an IF statement to gauge if items have been recently edited (last 7 days) or not.
IF(lastedited>ADDDAYS(TODAY(), -7) , “Recently Edited”, “Not been updated recently”)