Is there an option to select specific columns from the table? I want to copy data from a selected area.
For example, table has columns A, B, and C. I want to select and copy data only from columns B and C.
Let's say I want to select the red area rows and columns as a random selection. After selecting it I want to copy the selected area content and want to paste directly to me excel/sheets.
Hello there @shubham_soni Our Table component isnβt really meant to behave like a Google Sheet, so what youβre trying to do isnβt natively supported right now.
If you really want to do it, it might be a bit complicated and a little fragile, but there are some workarounds like what @WidleStudioLLP suggested. You would just need to swap out the hardcoded rows in that snippet and update them to the specific column names you want instead.
Another potential workaround is to work with the data directly using queries. At the end of the day, the table is just a frontend view of your underlying data, so instead of trying to force this behavior in the Table itself, you could create a separate filtering or selection flow, then display the exact subset you want in the UI for someone to copy.
What do you think, would a separate copy friendly view work for your use case?