Hi Folks,
I'm using a right-click option on a table in Perspective, and I've noticed an inconsistency in the copied output.
- When I select a single row, the value is copied as expected, e.g.,
Jakarta
. - However, when I select multiple rows, the copied result includes the column names, like this:
[{"city":"Jakarta"},{"city":"Helsinki"},{"city":"Madrid"},{"city":"Prague"}]
Is there a way to exclude the column names and copy only the values when multiple rows are selected? Ideally, I'd like the output to look like:
Jakarta,Helsinki,Madrid,Prague
Would appreciate any suggestions or workarounds on how to achieve this. Thanks!