Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Formula not supported: TEXTJOIN() #1010

Closed
1 of 2 tasks
James-Whitfield opened this issue Sep 24, 2018 · 3 comments
Closed
1 of 2 tasks

Formula not supported: TEXTJOIN() #1010

James-Whitfield opened this issue Sep 24, 2018 · 3 comments
Labels
enhancement Feature already exists, but should be enahanced.
Milestone

Comments

@James-Whitfield
Copy link
Contributor

James-Whitfield commented Sep 24, 2018

Do you want to request a feature or report a bug?

  • [] Bug
  • Feature

Version of ClosedXML

0.93.1

What is the current behavior?

TEXTJOIN() formula function not supported

What is the expected behavior or new feature?

https://support.office.com/en-us/article/textjoin-function-357b449a-ec91-49d0-80c3-0e8fc845691c

Did this work in previous versions of our tool? Which versions?

No

Reproducibility

Code to reproduce problem:

using ClosedXML.Excel;
using System;

namespace ConsoleApp1
{
    class Program
    {
        static void Main(string[] args)
        {
            var wb = new XLWorkbook();
            var ws = wb.AddWorksheet("Sheet1");
            ws.Cell("A1").FormulaA1 = "=TEXTJOIN(\",\",TRUE,0,1,2,3)";
            // TEXTJOIN() Formula not supported 
            var x = ws.Cell("A1").GetString();
            Console.WriteLine(x);
        }
    }
}
  • I attached a sample spreadsheet. (You can drag files on to this issue)
@igitur
Copy link
Member

igitur commented Sep 24, 2018

Thanks. Many formulas are not supported yet. We rely on community contributions to extend ClosedXML in this regard. So have a go at it.

@James-Whitfield
Copy link
Contributor Author

Thank you for the quick reply. I will look into adding support for this.

@igitur
Copy link
Member

igitur commented Jan 10, 2019

Closed by #1015

@igitur igitur closed this as completed Jan 10, 2019
@igitur igitur added this to the v0.95 milestone Jan 10, 2019
@igitur igitur added the enhancement Feature already exists, but should be enahanced. label Jan 10, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement Feature already exists, but should be enahanced.
Projects
None yet
Development

No branches or pull requests

2 participants