Forum Discussion
RichJW
Helper III
7 years agoConcatenating Columns changes Date Format
Hi all, I have a simple function concatenating 3 columns (2 are text, 1 is in date format). ConcDate = Tasks[ProjectName] & " : " & Tasks[TaskName] & " : " & Tasks[TaskStartDate].[Date] ...
- 7 years ago
You can use the format function for the concatenation:
ConcDate = Tasks[ProjectName] & " : " & Tasks[TaskName] & " : " & FORMAT(Tasks[TaskStartDate] ,"dd/mm/yyyy")
themistoklis
Community Champion
7 years ago
You can use the format function for the concatenation:
ConcDate = Tasks[ProjectName] & " : " & Tasks[TaskName] & " : " & FORMAT(Tasks[TaskStartDate] ,"dd/mm/yyyy")
- RichJW7 years ago
Helper III
Wonderful, thank you themistoklis. That works a dream.