I'd like to create a pie chart from a dataset that returns a single row with multiple columns in SSRS. Is this even possible?
I've tried unpivoting the data so I can have multiple rows, and I can't quite pull it. It seems I can't unpivot aggregated data.
So I'm not sure what my next step is. Should I try to unpivot the data, or can I build an expression for the values in the pie chart?
Here's sample data:
ID | IndivMonthSales | IndivBudget | IndivDifference
PAW $30,456.31 $60,000.00 $29543.69
The result I'm looking for is the Pie chart to use the values from IndivMonthSales and IndivDifference (which add up to 100%)
I guess there's 2 questions:
- is it possible to unpivot aggregated data (if so, how?)
- is it possible to use expressions for Pie Chart values (if so, how?)
I'm very grateful for any and all help.
Cheers!
Dave

