Hi @adrian.szymanski,
Sorry for the delay response. Thanks for the solution on custom function’s argument related issue.
I have verified this code in all way. It returns cell reference and named expression value. Thanks.
But when i use multiple params using comma it returns error.
Ex. =GREET(A1) working
=GREET(A1,12345) working
=GREET(A1,‘PRODUCT’) It is not working.
i have using this for multiple param,
GreetingsPlugin.implementedFunctions = {
GREET: {
method: “greet”,
parameters: [{ argumentType: “STRING” }, { argumentType: “STRING” }]
}
};