Sample Data
Column A has numbers. Column B uses a custom function DOUBLE to multiply each number by 2.
| Cell | Value |
|---|---|
| A1 | 5 |
| A2 | 10 |
| A3 | 15 |
| B1 | =DOUBLE(A1) |
| B2 | =DOUBLE(A2) |
| B3 | =DOUBLE(A3) |
Jump into concepts and practice - no test required
Column A has numbers. Column B uses a custom function DOUBLE to multiply each number by 2.
| Cell | Value |
|---|---|
| A1 | 5 |
| A2 | 10 |
| A3 | 15 |
| B1 | =DOUBLE(A1) |
| B2 | =DOUBLE(A2) |
| B3 | =DOUBLE(A3) |
=DOUBLE(A1)A B 1 | 5 -> 10 2 | 10 -> 20 3 | 15 -> 30
A B 1 | 5 | 10 2 | 10 | 20 3 | 15 | 30
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?