Hi, I’m working with a Raw Data Table and I’m looking for a simple way to export either the currently visible data or a selection of specific rows/columns. I need to share this filtered data with customers or team members, so an efficient extraction method would be very helpful.
The easiest way is to simply highlight the cells you want to share and copy them directly. If you only need to share a small portion of your data, you can use the copyOnSelection property
.set("copyOnSelection", true)
It’s very straightforward. And if you need something more customized, you can configure it like this:
.set("copyOnSelection", { "enabled": true, "colSeparator": "\t", "rowSeparator": "\n" })
With this approach, you can control exactly how the data is copied.
1 Like
Thanks for your help, I’ll give it a try