Hello, I have a product data set that has product sales with fields for store and city.
From this data set, I want to create three tables at each level of the hierarchy, product, store, and city.
The only way I can think of doing this is by creating a bunch of aggregate beastmode calculations for each field.
For example, if I want to view things at the store level, I'd place store name as the first column in a table, and for the address column, I'd create a beastmode: MAX(address).
This seems like a lot of work for this feature and would create a lot of calculated fields.
Is there a more elegant way of doing this? One challenge is that the global filters on the dashbaord should work with each level of detail/detail table.
Thank you in advance. You all have great insights.