I have a very basic function that I copied from microsoft site, it is getting registered correctly and appears in the formula but result is always #N/A no matter which parameters I provide. What am I doing wrong?
/**
* Adds two numbers.
* @customfunction
* @param first First number.
* @param second Second number.
* @returns The sum of the two numbers.
*/
function add(first, second) {
return first + second;
}
thankink you in advance.
Same thing happens to all samples that I download from the list.