Complete the code to create a pie chart from the data range A1:B5.
Insert a chart and set the chart type to [1].
The pie chart is the correct chart type to represent parts of a whole visually.
Complete the formula to calculate the percentage for each category in column C.
=B2/[1]To find the percentage, divide each value by the total sum of the values.
Fix the error in the formula to calculate the percentage with two decimal places.
=ROUND([1]*100, 2)
The formula divides the value by the total sum, multiplies by 100, and rounds to 2 decimals.
Fill both blanks to create a pie chart with labels showing percentages.
Insert chart with type [1] and set slice label to [2].
Pie chart is the correct chart type, and setting slice labels to percentage shows the part size clearly.
Fill all three blanks to create a pie chart showing category names and percentages.
Select data range [1], insert chart type [2], and set label to [3].
Use the correct data range, choose pie chart type, and set labels to percentage for clear visualization.