I'm trying to make a pie chart using three different columns from my sheets dataset (table 9) – caretaker issues, child issues, and housing issues. I'm trying to visualize the percentage/total number for each column in a pie chart, but Data Studio only allows one metric.
Here's how the columns are laid out:
I've tried grouping them together using these CASE statements, but it only shows numbers as their dimension.
CASE
WHEN Housing_Issues IS NOT NULL THEN Housing_Issues
WHEN Child_Issues IS NOT NULL THEN Child_Issues
WHEN Caretaker_Issues IS NOT NULL THEN Caretaker_Issues
END
Here's the link to the dashboard, and the pie chart I'm trying to create is on page 3. Any suggestion? Thanks.