The created property is a SharpCloud specific property that is generated for the date that the item is created.
Type of Data Returned
The created property returns the DATE of when the item was created.
Examples
Creating a calculation to show 60 days after the item was created
ADDDAYS(created, 60)
Having a calculation to show which items were created that day.
IF(created == TODAY, 1, 0)
Where you can create labels for the calculation, with “1” being a specific colour and “0” being another. That way you can show the border colour/item colour depending on the created date.