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ā }]
}
};