How can I print console any thing in excel custom function. I have tried many things but it not displaying anything in the console. Any documentation available then please, suggest it. or share the link for that. I have tried this code.
/**
* Multiply By 10.
* @customfunction
* @helpurl https://sfjlemon.ifour-consultancy.net/taskpane.html
* @param count First number.
* @returns {number} The multiply by ten.
*/
async function count(count) {
cosole.log("count value",count)
return count * 10;
}