{"id":52,"date":"2026-02-24T08:24:45","date_gmt":"2026-02-24T08:24:45","guid":{"rendered":"https:\/\/gigz.pk\/excel\/?post_type=lesson&#038;p=52"},"modified":"2026-03-07T04:18:28","modified_gmt":"2026-03-07T04:18:28","slug":"concat-and-textjoin","status":"publish","type":"lesson","link":"https:\/\/gigz.pk\/excel\/lesson\/concat-and-textjoin\/","title":{"rendered":"CONCAT and TEXTJOIN"},"content":{"rendered":"\n<p><strong>CONCAT<\/strong> and <strong>TEXTJOIN<\/strong> are text functions used to combine (join) text from multiple cells into one cell. These functions are very useful when working with names, addresses, codes, or formatted text.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">1. CONCAT Function<\/h2>\n\n\n\n<p>The <strong>CONCAT<\/strong> function joins text from different cells.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Structure:<\/h3>\n\n\n\n<pre class=\"wp-block-preformatted\">=CONCAT(text1, text2, text3, ...)<\/pre>\n\n\n\n<p>You can also use ranges:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">=CONCAT(A1:A5)<\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Example 1: Combining First and Last Name<\/h3>\n\n\n\n<p>If:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>A1 = Ali<\/li>\n\n\n\n<li>B1 = Khan<\/li>\n<\/ul>\n\n\n\n<p>Formula:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">=CONCAT(A1,\" \",B1)<\/pre>\n\n\n\n<p>Result:<\/p>\n\n\n\n<p>Ali Khan<\/p>\n\n\n\n<p>Notice we added <code>\" \"<\/code> (space) between the names.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Example 2: Combining Multiple Cells<\/h3>\n\n\n\n<p>If A1 to A3 contain:<\/p>\n\n\n\n<p>Ali<br>Sara<br>Ahmed<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">=CONCAT(A1:A3)<\/pre>\n\n\n\n<p>Result:<\/p>\n\n\n\n<p>AliSaraAhmed<\/p>\n\n\n\n<p>(No spaces unless added manually)<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">2. TEXTJOIN Function<\/h2>\n\n\n\n<p>The <strong>TEXTJOIN<\/strong> function is more advanced.<br>It allows you to:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Add a delimiter (separator like space, comma, dash)<\/li>\n\n\n\n<li>Ignore empty cells<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\">Structure:<\/h3>\n\n\n\n<pre class=\"wp-block-preformatted\">=TEXTJOIN(delimiter, ignore_empty, text1, text2, ...)<\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>delimiter<\/strong> \u2192 Symbol to separate text (e.g., &#8221; &#8220;, &#8220;, &#8220;)<\/li>\n\n\n\n<li><strong>ignore_empty<\/strong> \u2192 TRUE or FALSE<\/li>\n\n\n\n<li><strong>text<\/strong> \u2192 Cells or ranges<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\">Example 1: Joining Names with Space<\/h3>\n\n\n\n<p>If:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>A1 = Ali<\/li>\n\n\n\n<li>B1 = Khan<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-preformatted\">=TEXTJOIN(\" \", TRUE, A1, B1)<\/pre>\n\n\n\n<p>Result:<\/p>\n\n\n\n<p>Ali Khan<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Example 2: Joining List with Comma<\/h3>\n\n\n\n<p>If A1 to A3 contain:<\/p>\n\n\n\n<p>Ali<br>Sara<br>Ahmed<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">=TEXTJOIN(\", \", TRUE, A1:A3)<\/pre>\n\n\n\n<p>Result:<\/p>\n\n\n\n<p>Ali, Sara, Ahmed<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Difference Between CONCAT and TEXTJOIN<\/h2>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><thead><tr><th>CONCAT<\/th><th>TEXTJOIN<\/th><\/tr><\/thead><tbody><tr><td>Simply joins text<\/td><td>Joins text with a separator<\/td><\/tr><tr><td>Does not automatically ignore empty cells<\/td><td>Can ignore empty cells<\/td><\/tr><tr><td>Basic function<\/td><td>More flexible and powerful<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\">When to Use CONCAT<\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Simple text combination<\/li>\n\n\n\n<li>Small number of cells<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">When to Use TEXTJOIN<\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Large ranges<\/li>\n\n\n\n<li>Adding commas or spaces automatically<\/li>\n\n\n\n<li>Ignoring blank cells<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">Why These Functions Are Important<\/h2>\n\n\n\n<p>They help you:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Combine names<\/li>\n\n\n\n<li>Create full addresses<\/li>\n\n\n\n<li>Build formatted reports<\/li>\n\n\n\n<li>Prepare data for export<\/li>\n\n\n\n<li>Save time in text management<\/li>\n<\/ul>\n\n\n\n<p>CONCAT and TEXTJOIN are essential tools for handling and organizing text efficiently in Excel.<\/p>\n\n\n<div class=\"yoast-breadcrumbs\"><span><span><a href=\"https:\/\/gigz.pk\/excel\/\">Home<\/a><\/span> \u00bb <span class=\"breadcrumb_last\" aria-current=\"page\">Excel Essential Functions (EEF) > Text Functions > CONCAT and TEXTJOIN<\/span><\/span><\/div>\n\n\n<div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1772857218626\"><strong class=\"schema-faq-question\"><\/strong> <p class=\"schema-faq-answer\"><\/p> <\/div> <\/div>\n","protected":false},"menu_order":24,"template":"","class_list":["post-52","lesson","type-lesson","status-publish","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.5 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>CONCAT and TEXTJOIN - Learn Excel the Right Way.<\/title>\n<meta name=\"description\" content=\"Learn how to use CONCAT and TEXTJOIN functions in Excel to combine text from multiple cells with spaces, commas, or other separators.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/gigz.pk\/excel\/lesson\/concat-and-textjoin\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"CONCAT and TEXTJOIN - Learn Excel the Right Way.\" \/>\n<meta property=\"og:description\" content=\"Learn how to use CONCAT and TEXTJOIN functions in Excel to combine text from multiple cells with spaces, commas, or other separators.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/gigz.pk\/excel\/lesson\/concat-and-textjoin\/\" \/>\n<meta property=\"og:site_name\" content=\"Learn Excel the Right Way.\" \/>\n<meta property=\"article:modified_time\" content=\"2026-03-07T04:18:28+00:00\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":[\"WebPage\",\"FAQPage\"],\"@id\":\"https:\\\/\\\/gigz.pk\\\/excel\\\/lesson\\\/concat-and-textjoin\\\/\",\"url\":\"https:\\\/\\\/gigz.pk\\\/excel\\\/lesson\\\/concat-and-textjoin\\\/\",\"name\":\"CONCAT and TEXTJOIN - Learn Excel the Right Way.\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/gigz.pk\\\/excel\\\/#website\"},\"datePublished\":\"2026-02-24T08:24:45+00:00\",\"dateModified\":\"2026-03-07T04:18:28+00:00\",\"description\":\"Learn how to use CONCAT and TEXTJOIN functions in Excel to combine text from multiple cells with spaces, commas, or other separators.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/gigz.pk\\\/excel\\\/lesson\\\/concat-and-textjoin\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/gigz.pk\\\/excel\\\/lesson\\\/concat-and-textjoin\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/gigz.pk\\\/excel\\\/lesson\\\/concat-and-textjoin\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/gigz.pk\\\/excel\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Excel Essential Functions (EEF) > Text Functions > CONCAT and TEXTJOIN\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/gigz.pk\\\/excel\\\/#website\",\"url\":\"https:\\\/\\\/gigz.pk\\\/excel\\\/\",\"name\":\"Learn Excel the Right Way.\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/gigz.pk\\\/excel\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"CONCAT and TEXTJOIN - Learn Excel the Right Way.","description":"Learn how to use CONCAT and TEXTJOIN functions in Excel to combine text from multiple cells with spaces, commas, or other separators.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/gigz.pk\/excel\/lesson\/concat-and-textjoin\/","og_locale":"en_US","og_type":"article","og_title":"CONCAT and TEXTJOIN - Learn Excel the Right Way.","og_description":"Learn how to use CONCAT and TEXTJOIN functions in Excel to combine text from multiple cells with spaces, commas, or other separators.","og_url":"https:\/\/gigz.pk\/excel\/lesson\/concat-and-textjoin\/","og_site_name":"Learn Excel the Right Way.","article_modified_time":"2026-03-07T04:18:28+00:00","twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":["WebPage","FAQPage"],"@id":"https:\/\/gigz.pk\/excel\/lesson\/concat-and-textjoin\/","url":"https:\/\/gigz.pk\/excel\/lesson\/concat-and-textjoin\/","name":"CONCAT and TEXTJOIN - Learn Excel the Right Way.","isPartOf":{"@id":"https:\/\/gigz.pk\/excel\/#website"},"datePublished":"2026-02-24T08:24:45+00:00","dateModified":"2026-03-07T04:18:28+00:00","description":"Learn how to use CONCAT and TEXTJOIN functions in Excel to combine text from multiple cells with spaces, commas, or other separators.","breadcrumb":{"@id":"https:\/\/gigz.pk\/excel\/lesson\/concat-and-textjoin\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/gigz.pk\/excel\/lesson\/concat-and-textjoin\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/gigz.pk\/excel\/lesson\/concat-and-textjoin\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/gigz.pk\/excel\/"},{"@type":"ListItem","position":2,"name":"Excel Essential Functions (EEF) > Text Functions > CONCAT and TEXTJOIN"}]},{"@type":"WebSite","@id":"https:\/\/gigz.pk\/excel\/#website","url":"https:\/\/gigz.pk\/excel\/","name":"Learn Excel the Right Way.","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/gigz.pk\/excel\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"}]}},"_links":{"self":[{"href":"https:\/\/gigz.pk\/excel\/wp-json\/wp\/v2\/lesson\/52","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/gigz.pk\/excel\/wp-json\/wp\/v2\/lesson"}],"about":[{"href":"https:\/\/gigz.pk\/excel\/wp-json\/wp\/v2\/types\/lesson"}],"wp:attachment":[{"href":"https:\/\/gigz.pk\/excel\/wp-json\/wp\/v2\/media?parent=52"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}