A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
You can call it by using the workbook name, e.g.:
=Personal.xlsb!MonthName(B1)
FWIW, it would be more efficient to just use a regular XL function:
=TEXT(DATE(1,B1,1),"MMMM")
And this would be a bit more efficient UDF:
Public Function MonthName2(ByVal MonthNumber As Integer) As String
If MonthNumber >0 And MonthNumber < 13 Then
MonthName2 = Format(DateSerial(1, MonthNumber, 1), "MMMM")
End If
End Function