Is there a way on a stacked bar chart to have it show multiple stacks with a count for each based on what I have in a single column of data.
In the below instance I have several different membership types sold on each date, but all it does is count the grand total. I need it to count totals for individual membership types sold and stack those.
The way I've done stacked charts in other areas for this is using a measure for each distinct type in a data column (such as calculate(sum(column) , type = type a) ), however the membership types here often change, so I'd rather have this be as dynamic as possible.