CONCAT not working.
See original GitHub issueError
NPOI.SS.Formula.Eval.NotImplementedFunctionException: '_xlfn.CONCAT'
at NPOI.SS.Formula.UserDefinedFunction.Evaluate(ValueEval[] args, OperationEvaluationContext ec) in npoi\main\SS\Formula\UserDefinedFunction.cs:line 41
Formula
=CONCAT(TaxYearInformation.Person.FirstName,TaxYearInformation.Person.LastName)
Code
IWorkbook workbook;
var formFilePath = "FormRR31.xlsx";
using (FileStream file = new FileStream(formFilePath, FileMode.Open, FileAccess.Read))
{
workbook = new XSSFWorkbook(file);
workbook.MissingCellPolicy = MissingCellPolicy.RETURN_NULL_AND_BLANK;
}
XSSFFormulaEvaluator formula = new XSSFFormulaEvaluator(workbook);
formula.EvaluateAll();
Issue Analytics
- State:
- Created 4 months ago
- Comments:6 (3 by maintainers)
Top Results From Across the Web
CONCAT Function Not Working
Hi, Using Office 365 here (installed on PC). Entering =CONCAT(G2," ",H2) to join the two text values in these cells and when clicking...
Read more >Why Is My Excel CONCATENATE Not Working? Here's How ...
Before sliding to the solutions, let's examine why concatenate may not work. Error in Typing: You may have accidentally misspelled the function ......
Read more >CONCAT not working in Excel Office 365
I found a solution. Had to covert the cell format to General. The value in the cells that I use are all formatted...
Read more >Why is the concatenate Excel formula not working? How ...
Sometimes it simply is because your Worksheet Calculations are set to manual. Select automatic if it's on manual and it should work correctly....
Read more >Concatenate Not Working in Excel (3 Reasons with ...
Reason 1: Concatenate in Excel Not Working If formula Cell Number Format is Text. Sometimes, cell values are not combined even if the...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
https://techcommunity.microsoft.com/t5/excel/concat-function-not-woking-in-excel-version-1903/m-p/394266
Please resave the file with a Excel version supports CONCAT
Thanks, that post is from 2019, I am using 2304, Fat Client, the issue is stll there.