Share via

HELP WITH CONCAT FORMULA

Anonymous
2025-02-20T16:01:28+00:00

Need help with CONCAT function. I am simply trying to combine text cells into a comma separated string. I typed =CONCAT(C9,D9,E9,H9) and ENTER. Nothing happens. If i hover over the formula, it shows me the text from the cell, but when I hit enter, it doesnt have it typed out as a result. How do i see the rendered result in the chain I thought I was building?

Microsoft 365 and Office | Excel | For business | Windows

Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.

0 comments No comments

Answer accepted by question author

Anonymous
2025-02-20T21:30:23+00:00

Just add a space after the comma (the comma within the double quotes) in the formula:

=TEXTJOIN(", ",TRUE,C9,D9,E9,H9)

Was this answer helpful?

0 comments No comments

Answer accepted by question author

Anonymous
2025-02-20T16:11:25+00:00

Try this instead:

=TEXTJOIN(",",TRUE,C9,D9,E9,H9)

Was this answer helpful?

0 comments No comments

3 additional answers

Sort by: Most helpful
  1. Anonymous
    2025-02-20T21:54:37+00:00

    YOU ARE A SUPERHERO!!! THANK YOU!!!!!!!!!!!!!!!!!

    Was this answer helpful?

    0 comments No comments
  2. Anonymous
    2025-02-20T21:24:05+00:00

    this worked so much easier! BUT how do i put a space after the comma in the chain? use the " " ?

    Was this answer helpful?

    0 comments No comments
  3. Rich~M 20,370 Reputation points Volunteer Moderator
    2025-02-20T16:34:07+00:00

    B. Deitrick's suggestion of using TEXTJOIN is better for what you are wanting to do. It is available in Excel 2019 and later. In case that is not available, to create a comma separated string with CONCAT use this modification.

    =CONCAT(C9,",",D9,",",E9,",",F9)

    However, you said that when you pressed Enter nothing happens. What do you mean? Is the cell blank or do you just still see the formula?

    If the cell is blank but the formula is in the Formula Bar, check the text color in the cell to make sure it contrasts with the cell color.

    If you still see the formula, the cell is likely formatted as text. Click in the cell, in the center of the Home ribbon use the format dropdown to change the formatting to General, press the F2 key, and then press Enter. That will reformat the cell and re-enter the formula so it will calculate.

    Was this answer helpful?

    0 comments No comments