Forum Discussion
MarkShnier__You
Qrew Legend
6 months agoThis formula will strip away the time portion of the text.
var text DateOne = Left([Coaching_pipelineText], "T");
var text DateTwo = Trim(Left(Part([Coaching_pipelineText],2, "Z"),"T"));
List("\n",
$DateOne,
$DateTwo)
BrianDunk
6 months agoQrew Cadet
Is there a way to get them side by side instead of on top of each other? Maybe something like this?
2024-05-13, 2024-03-06
- MarkShnier__You6 months ago
Qrew Legend
Sure, the List function uses the specified separator string to separate the subsequent non blank strings.
So just make this change to use a comma space as the separator.
List(", ",
$DateOne,
$DateTwo)