Users want to get the part to total % data and the make the category dynamic. Ex: Users want to be able to select if they want to see : The % of sellers in region A. or The % of sellers in region A with Account B etc.
Do we have a bar chart or other charts to achieve this data slice and dice?
Ex: showing below, the highlighted are one kind of combination example we want users to be able to choose.
Hi Erick,
Sending you the sample data, please advice how we can build the chart. users are asking if we can have a pie charts to present this part to total %. but make the way to aggregate the data be dynamic. for example: for the yellow highlighted part, users want to choose their own combinenations to view the data. Like ’ biz_unit + geo’ or ’ geo + region’
I’m not sure how dynamically we could build something like this.
An option would be to create something like:
concat(
ifelse(
pParameter=‘biz_unit’, biz_unit, all the other possible field, NULL),
’ ‘,
ifelse(
pParameter2=biz_unit’, biz_unit, all the other possible field, NULL)
)
You could add more parameter for the concat so it could be more dynamic.
Hopefully that can help you.
BR
Robert