Dashboard Mode - Custom functions
Goal
Calculate the area of different shapes using a custom function in Google Sheets to simplify repeated calculations.
Jump into concepts and practice - no test required
Calculate the area of different shapes using a custom function in Google Sheets to simplify repeated calculations.
| Shape | Dimension 1 | Dimension 2 | Area |
|---|---|---|---|
| Rectangle | 5 | 10 | |
| Triangle | 6 | 8 | |
| Circle | 7 | ||
| Rectangle | 3 | 4 | |
| Triangle | 10 | 5 |
=SUM(D2:D6)=CALCULATE_AREA(A2, B2, C2) used in cells D2 to D6.=CALCULATE_AREA(A2, B2, C2)+---------------------------+ | Total Area KPI | | (Cell F1) | +---------------------------+ | Shape | Dim1 | Dim2 | Area | |---------------------------| | Data Table with custom fn | +---------------------------+
Users can change the dimensions or shape names in columns A, B, and C. The custom function recalculates the area automatically in column D. The Total Area KPI updates to reflect the sum of all areas.
If you change the shape in A3 from "Circle" to "Rectangle" and set Dimension 2 to 9, what happens to the area in D3 and the total area KPI?
function DOUBLE(input) {
return input * 2;
}=DOUBLE(5) in a sheet cell?function ADDTEN(value) {
return value + 10
}=ADDTEN(5) in the sheet, it shows an error. What is the likely problem?