Let's say my segment looks like this:
When copying as csv, the result looks something like:
Doing thing, and another thing,26-04-25 17:33:27,26-04-25 17:33:29,1s
Which divides the segment name into 2 columns.
Simply wrapping the segment name in quotation marks like this should solve the issue:
"Doing thing, and another thing",26-04-25 17:33:27,26-04-25 17:33:29,1s
It does add a bit of complexity since you also gotta escape quotes now, haha:
which would look like this:
"Doing thing, and ""another"", thing",26-04-25 17:33:27,26-04-25 17:33:29,2s
Let's say my segment looks like this:
When copying as csv, the result looks something like:
Doing thing, and another thing,26-04-25 17:33:27,26-04-25 17:33:29,1sWhich divides the segment name into 2 columns.
Simply wrapping the segment name in quotation marks like this should solve the issue:
"Doing thing, and another thing",26-04-25 17:33:27,26-04-25 17:33:29,1sIt does add a bit of complexity since you also gotta escape quotes now, haha:
which would look like this:
"Doing thing, and ""another"", thing",26-04-25 17:33:27,26-04-25 17:33:29,2s