Hi, I would like to know more about the feature of csv download :
It works perfectly but I would like users to be able to download what they see in a Weweb “sheet” (a “front-end” table that relies on different tables, where there are calculations).
Right now, they can download data from a table in Supabase, that has the same filters as the involved Weweb “sheet” (to bypass the difficutly I have to let them download data showed and calculated in Weweb).
Do you know how to do this or should I rather create vues in Supabase ?
EDIT : i’m currently doing a cluncky workflow, that is when clicking button export, triggers a workflow with 1) a loop creating an object on every row of the Weweb table (with custom queries, so this is where I can get Weweb-based calculated values), then sending it to an array variable (to populate this array variable with every row (previously transformed into object)), added at the end of the array 2) then only, download the csv, based on the array variable
Thanks in advance