Excel Dictionary

What is Excel XLFN?

The generic meaning of the XLFN is Unsupported Function!

TextJoin Functions causes Excel XLFN in Excel 2013 version
TextJoin Functions causes Excel XLFN in Excel 2013 version

_xlfn. in excel is a prefix that appears, when a function is not recognised by your Excel version. This is usually happens when you enter a formula with a function which has been introduced in the later or newer versions of Excel, but the file is opened in an older version that does not support that function.

To understand this easily, I’m going to use the function TEXTJOIN which is introduced in the 2019 version but in the Excel 2013 which causes _xlfn. in the current version.

Example of _xlfn. in Excel:

If a formula contains the TEXTJOIN function in the formula and it will display the _xlfn. in the formula bar.

=TEXTJOIN(", ", TRUE, B4:B7)

The above formula will be displayed normally in the newer version of the excel but in the older version the same formula will display _xlfn. with it.

=_xlfn.TEXTJOIN(", ", TRUE, B4:B7)

This means that Excel does not recognize TEXTJOIN in your version.

Other Function That may show XLFN in Older Version of Excel:

Function NameFunction UsageFunction Introduced in:
TEXTJOINMerges text strings with a delimiterExcel 2016
IFSFormula to have multiple conditions without nested functionsExcel 2016
CONCATFunction used to replace CONCATENATE function for merging textsExcel 2016
XLOOKUPA powerful alternative Function to VLOOKUP and INDEX-MATCHExcel 2019 / 365
FILTERFunction to filter an array based on the given criteria Excel 2019 / 365
UNIQUEFunction to give the unique values in the range of areaExcel 2019 / 365

Fix for _xlfn. error while using TEXTJOIN Function:

  • You need to upgrade you excel to the latest version. You can follow the instructions provided in the official documentation from microsoft.
  • You can enable the compatibility mode in your older version of Excel. Check if the file is in Compatibility Mode (.xls format) and convert it to .xlsx to overcome this issue.
  • If the above two didn’t help you, then you need to do the text joining using manual formula.
=B4 & ", " & B5 & ", " & B6 & ", " & B7

The above manual formula will joins all the text with “,” comma delimiter without any function to do it.

Conclusion:

_xlfn. error will appear when your excel was not able to understand or recognize the function name and its usage. In simple words, this error indicates missing compatibility and the best way to fix this is to upgrade your excel to the latest version. Feel free to comment us below, if you have any queries about the above topic and find more interesting excel tutorials on our homepage.

That’s it.

Narendhiran Vijayakumar.

References:

Narendhiran Signature

Narendhiran Vijayakumar

Hello~ I'm Narendhiran Vijayakumar, a dedicated web developer with strong skills in both frontend frameworks and backend development with PHP. I enjoy creating websites that are user-friendly & user-interactive. I've successfully created and launched several platforms, including Klickaud.org, Forhub.io, and IMGCentury.com.

Leave a Reply

Your email address will not be published. Required fields are marked *

Back to top button