
Announcements
Hi, i have question. How i can remove time from default column 'Created On'. When i want display created date record and i create label, in text property i write ThisItem.'Created On' but in label displayed is date and time, when the record was created. Can i remove time from text?
@Anonymous
Because 'created on' is a server generated value, the easiest thing to do would be to format text in your label to display just the date. You would use this type of formula:
Text(ThisItem.'Created On',
ShortDate
)
You can replace ShortDate with format that you want to use, such as LongDate, "dd/mm/yy", etc