A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
Hello. Are you defining the LAMBDA directly in Name Manager, or are you creating it via a formula and then assigning the name afterward?
The parser fails before Excel can explain why the name is invalid, so you get the generic error instead of a targeted warning. The documentation lists valid characters, but it does not enumerate reserved identifiers or explain name-resolution conflicts, which is why this feels misleading.
As for naming conventions: leading underscores are allowed, but they are not a safe way to mark “private” functions if the name that follows resembles a built-in function. A symbolic prefix alone is fragile in Excel.
The most reliable pattern in practice is a short alphabetic prefix plus a descriptive name, for example: fnFutureValue, _fnFutureValue, or CalcFutureValue.