Hello,
I am trying to create simple chain between sheets, where first sheet is a table with action to sent id and date from selected row into another sheet, where I load more details for selected row.
Lets say I have table with id, date, username with action to go to detail, where I want to load more data for specific user (like name, surname, etc.). First part is not a problem, I have 2 parameters that I will fill with action and I am redirected to second sheet.
Problem is how to create detail with specific data. I tried to use Insight, but there are limitations to how much categories we can use or that these values can be only numbers:
max. 5 categories with only 1 value:
max. 1 category with unlimited values, but values are only sum/counts and it is not available to pass text. I want add text column into value, it will make count from it (always 1) and the only other option is count distinct:
I am able to get text using categoryValue like this (thanks to AWS Quicksight: showing large text fields using custom insights - Stack Overflow):
But because of limitations, we are not able to pass more categories. Also this looks like a not intented solution and really bad solution for more values. I know that we can create more Insights for each detail category, but that will mean to create around 10 Insights, create 40+ computations and I don’t think that is correct usage. Also that means that each action to show detail will load same request 10 times (unfortunately, this is how quicksight works with direct query).
Currently, we are loading everything in the first dataset (for the table) and sending all values as parameters, so we can use them in narrative, but we want to reduce load of first dataset (lots of joins just because of detail). It looks like this (there are lots of sections):
Do you know if there is any other option how to create detail (lots of data for 1 specific row selected in different table) in Quicksight? Or how to avoid using parameters from first dataset / using more than 1 Insight in detail tab?
Thanks for any help or hint how to show detailed data, because I am running out of ideas.