Forum Discussion
RichJW
7 years agoHelper III
Concatenating 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
7 years agoCommunity Champion
You can use the format function for the concatenation:
ConcDate = Tasks[ProjectName] & " : " & Tasks[TaskName] & " : " & FORMAT(Tasks[TaskStartDate] ,"dd/mm/yyyy")
RichJW
7 years agoHelper III
Wonderful, thank you themistoklis. That works a dream.