I'm trying to create a comment thread. I would like the message list to show the time instead of the date if the timstamp matches today's date.
I'm currently using this formula in a "DisplayDate" column :
IF(
DATE([DateCreation])=TODAY(),
TEXT(TIME([DateCreation])),
TEXT(DATE([DateCreation]))
)
It seems to works, but how can I convert this result :
1:51:01 PM
Into :
13:51
?
Thanks for your help !
Solved! Go to Solution.
IF(
DATE([DateCreation])=TODAY(),
TEXT(TIME([DateCreation]), "HH:MM"),
TEXT(DATE([DateCreation]))
)
User | Count |
---|---|
36 | |
8 | |
3 | |
2 | |
2 |