Skip to content

Custom function label is not found using the seach textbox of the fx search function #446

@excel-inside

Description

@excel-inside

Hello,

I have developped a custom function in an Excel taskpane project using Visual Studio 2022.
I used a shared runtime.

The function run well.
I can find the name of my function in the "select function" scroll list of the fx dialogbox. It is named as NAMESPACE+NAMEFUNCTION.
I can find the name of my add-in in the "select category" scroll list.

BUT I can't find my function using the "search function".
SO the certification of my add-in failed ?!

my js file is :

Office.onReady(() => {
});
/**
 * Retourne la version du logiciel
 * @customfunction
 * @returns {string} Version actuelle du logiciel.
 */
function Taratata() {
    return Variable;
}
// Associe l'ID de la fonction du fichier json au nom de la fonction js
CustomFunctions.associate("TARATATA", Taratata);

my json file is :

{
  "functions": [
    {
      "id": "TARATATA",
      "name": "TARATATA",
      "description": "Retourne la version du logiciel",
      "category": "Tutoriel",
      "helpUrl": "https://www.domain.fr/Functions/help.html",
      "result": {
        "dimensionality": "scalar",
        "type": "string"
      }
    }
  ]
}

Any ideas to resolve this issue ?

Thank you

Metadata

Metadata

Assignees

Labels

Area: ExcelFeedback related to Excel add-ins

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions