This custom Excel function uses GenderAPI.io to predict the gender of a person based on their first name or full name.
This function works with the GenderAPI for Microsoft Excel Add-in.
To use it, please make sure you have the add-in installed:
https://appsource.microsoft.com/en-us/product/office/WA200008555
=GENDER.FROM_NAME(name, [enable_additional_info], [country])If enable_additional_info is 0 or omitted:
➤ Returns a single value: male, female, or null.
If enable_additional_info is 1:
➤ Returns a 1-row, 4-column array:
| Gender | Probability | Most Likely Country | Matched Name |
|---|---|---|---|
| female | 96 | US | emily |
Example 1: Basic gender prediction
=GENDER.FROM_NAME("Alex")Example 2: Use additional info for detailed output
=GENDER.FROM_NAME("Emily Johnson", 1)Example 3: Improve accuracy with country filter
=GENDER.FROM_NAME("Andrea", 1, "IT")