{"id":3246,"date":"2018-10-29T08:42:54","date_gmt":"2018-10-29T08:42:54","guid":{"rendered":"http:\/\/officetuts.net\/excel\/?p=3246"},"modified":"2024-03-29T14:24:54","modified_gmt":"2024-03-29T14:24:54","slug":"get-the-first-x-characters","status":"publish","type":"post","link":"https:\/\/officetuts.net\/excel\/formulas\/get-the-first-x-characters\/","title":{"rendered":"Get the First x Characters in Excel"},"content":{"rendered":"\n
Get-the-First-x-Characters<\/a>Download File<\/a><\/div>\n\n\n\n

Whether you want to display the first x characters from the identification card or a zip code there are a few ways you can achieve this.<\/p>\n\n\n\n

Get the first x characters<\/h2>\n\n\n\n

In this case, we deal with an identification number that always starts with three letters and six numbers after that.<\/p>\n\n\n\n

\"\"<\/figure>\n\n\n\n

To get the first three letters use this formula.<\/p>\n\n\n\n

=LEFT(A2,3)<\/pre>\n\n\n\n

For the numbers, we are going to use the RIGHT<\/strong> function.<\/p>\n\n\n\n

=RIGHT(A2,6)<\/pre>\n\n\n\n
\"\"<\/figure>\n\n\n\n

Get the first x characters before a character<\/h2>\n\n\n\n

Now, we are going to deal with a more complicated problem. The example below shows numbers separated by dashes.<\/p>\n\n\n\n

\"\"<\/figure>\n\n\n\n

We want to get the first part of the number. We can\u2019t get the first x numbers because the number of characters before the dash is not constant. But we can modify the formula to do the job.<\/p>\n\n\n\n

=LEFT(A2,FIND(\"-\",A2)-1)<\/pre>\n\n\n\n

The FIND<\/strong> method returns the position of the first dash minus 1.<\/p>\n\n\n\n

Get the first x characters after a character<\/h2>\n\n\n\n

In the previous example, we could see how to get the first characters before a specific character. Now we are going to get a fixed number of characters after a character.<\/p>\n\n\n\n

=RIGHT(A2,LEN(A2) - FIND(\"-\",A2))<\/pre>\n\n\n\n
\"\"<\/figure>\n\n\n\n

The LEN<\/strong> function gets the number of characters minus the first occurrence of the dash.<\/p>\n\n\n\n

11 \u2013 4 = 7.<\/p>\n\n\n\n

In other words, the formula gets 7 characters from the RIGHT<\/strong>.<\/p>\n","protected":false},"excerpt":{"rendered":"

Whether you want to display the first x characters from the identification card or a zip code there are a few ways you…<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[23],"tags":[170,190],"yoast_head":"\nGet the First x Characters in Excel<\/title>\n<meta name=\"description\" content=\"Learn how to get the first x characters from an identification number or zip code in Excel. Download the file and use LEFT and RIGHT functions.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/officetuts.net\/excel\/formulas\/get-the-first-x-characters\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Get the First x Characters in Excel\" \/>\n<meta property=\"og:description\" content=\"Learn how to get the first x characters from an identification number or zip code in Excel. Download the file and use LEFT and RIGHT functions.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/officetuts.net\/excel\/formulas\/get-the-first-x-characters\/\" \/>\n<meta property=\"article:published_time\" content=\"2018-10-29T08:42:54+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-03-29T14:24:54+00:00\" \/>\n<meta property=\"og:image\" content=\"http:\/\/officetuts.net\/excel\/wp-content\/uploads\/sites\/2\/2018\/10\/identification-number.png\" \/>\n<meta name=\"author\" content=\"Tomasz Decker\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Tomasz Decker\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"1 minute\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/officetuts.net\/excel\/formulas\/get-the-first-x-characters\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/officetuts.net\/excel\/formulas\/get-the-first-x-characters\/\"},\"author\":{\"name\":\"Tomasz Decker\",\"@id\":\"https:\/\/officetuts.net\/excel\/#\/schema\/person\/41b0b6996aaa4c4127f86f3d24452d42\"},\"headline\":\"Get the First x Characters in Excel\",\"datePublished\":\"2018-10-29T08:42:54+00:00\",\"dateModified\":\"2024-03-29T14:24:54+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/officetuts.net\/excel\/formulas\/get-the-first-x-characters\/\"},\"wordCount\":222,\"publisher\":{\"@id\":\"https:\/\/officetuts.net\/excel\/#\/schema\/person\/41b0b6996aaa4c4127f86f3d24452d42\"},\"image\":{\"@id\":\"https:\/\/officetuts.net\/excel\/formulas\/get-the-first-x-characters\/#primaryimage\"},\"thumbnailUrl\":\"http:\/\/officetuts.net\/excel\/wp-content\/uploads\/sites\/2\/2018\/10\/identification-number.png\",\"keywords\":[\"file\",\"pinterest\"],\"articleSection\":[\"formulas\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/officetuts.net\/excel\/formulas\/get-the-first-x-characters\/\",\"url\":\"https:\/\/officetuts.net\/excel\/formulas\/get-the-first-x-characters\/\",\"name\":\"Get the First x Characters in Excel\",\"isPartOf\":{\"@id\":\"https:\/\/officetuts.net\/excel\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/officetuts.net\/excel\/formulas\/get-the-first-x-characters\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/officetuts.net\/excel\/formulas\/get-the-first-x-characters\/#primaryimage\"},\"thumbnailUrl\":\"http:\/\/officetuts.net\/excel\/wp-content\/uploads\/sites\/2\/2018\/10\/identification-number.png\",\"datePublished\":\"2018-10-29T08:42:54+00:00\",\"dateModified\":\"2024-03-29T14:24:54+00:00\",\"description\":\"Learn how to get the first x characters from an identification number or zip code in Excel. Download the file and use LEFT and RIGHT functions.\",\"breadcrumb\":{\"@id\":\"https:\/\/officetuts.net\/excel\/formulas\/get-the-first-x-characters\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/officetuts.net\/excel\/formulas\/get-the-first-x-characters\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/officetuts.net\/excel\/formulas\/get-the-first-x-characters\/#primaryimage\",\"url\":\"http:\/\/officetuts.net\/excel\/wp-content\/uploads\/sites\/2\/2018\/10\/identification-number.png\",\"contentUrl\":\"http:\/\/officetuts.net\/excel\/wp-content\/uploads\/sites\/2\/2018\/10\/identification-number.png\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/officetuts.net\/excel\/formulas\/get-the-first-x-characters\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/officetuts.net\/excel\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Get the First x Characters in Excel\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/officetuts.net\/excel\/#website\",\"url\":\"https:\/\/officetuts.net\/excel\/\",\"name\":\"\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/officetuts.net\/excel\/#\/schema\/person\/41b0b6996aaa4c4127f86f3d24452d42\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/officetuts.net\/excel\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\/\/officetuts.net\/excel\/#\/schema\/person\/41b0b6996aaa4c4127f86f3d24452d42\",\"name\":\"Tomasz Decker\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/officetuts.net\/excel\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/18cbe22837193574870ae40ba56bf712?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/18cbe22837193574870ae40ba56bf712?s=96&d=mm&r=g\",\"caption\":\"Tomasz Decker\"},\"logo\":{\"@id\":\"https:\/\/officetuts.net\/excel\/#\/schema\/person\/image\/\"},\"description\":\"Spreadsheet and Python enthusiast.\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Get the First x Characters in Excel","description":"Learn how to get the first x characters from an identification number or zip code in Excel. Download the file and use LEFT and RIGHT functions.","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:\/\/officetuts.net\/excel\/formulas\/get-the-first-x-characters\/","og_locale":"en_US","og_type":"article","og_title":"Get the First x Characters in Excel","og_description":"Learn how to get the first x characters from an identification number or zip code in Excel. Download the file and use LEFT and RIGHT functions.","og_url":"https:\/\/officetuts.net\/excel\/formulas\/get-the-first-x-characters\/","article_published_time":"2018-10-29T08:42:54+00:00","article_modified_time":"2024-03-29T14:24:54+00:00","og_image":[{"url":"http:\/\/officetuts.net\/excel\/wp-content\/uploads\/sites\/2\/2018\/10\/identification-number.png"}],"author":"Tomasz Decker","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Tomasz Decker","Est. reading time":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/officetuts.net\/excel\/formulas\/get-the-first-x-characters\/#article","isPartOf":{"@id":"https:\/\/officetuts.net\/excel\/formulas\/get-the-first-x-characters\/"},"author":{"name":"Tomasz Decker","@id":"https:\/\/officetuts.net\/excel\/#\/schema\/person\/41b0b6996aaa4c4127f86f3d24452d42"},"headline":"Get the First x Characters in Excel","datePublished":"2018-10-29T08:42:54+00:00","dateModified":"2024-03-29T14:24:54+00:00","mainEntityOfPage":{"@id":"https:\/\/officetuts.net\/excel\/formulas\/get-the-first-x-characters\/"},"wordCount":222,"publisher":{"@id":"https:\/\/officetuts.net\/excel\/#\/schema\/person\/41b0b6996aaa4c4127f86f3d24452d42"},"image":{"@id":"https:\/\/officetuts.net\/excel\/formulas\/get-the-first-x-characters\/#primaryimage"},"thumbnailUrl":"http:\/\/officetuts.net\/excel\/wp-content\/uploads\/sites\/2\/2018\/10\/identification-number.png","keywords":["file","pinterest"],"articleSection":["formulas"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/officetuts.net\/excel\/formulas\/get-the-first-x-characters\/","url":"https:\/\/officetuts.net\/excel\/formulas\/get-the-first-x-characters\/","name":"Get the First x Characters in Excel","isPartOf":{"@id":"https:\/\/officetuts.net\/excel\/#website"},"primaryImageOfPage":{"@id":"https:\/\/officetuts.net\/excel\/formulas\/get-the-first-x-characters\/#primaryimage"},"image":{"@id":"https:\/\/officetuts.net\/excel\/formulas\/get-the-first-x-characters\/#primaryimage"},"thumbnailUrl":"http:\/\/officetuts.net\/excel\/wp-content\/uploads\/sites\/2\/2018\/10\/identification-number.png","datePublished":"2018-10-29T08:42:54+00:00","dateModified":"2024-03-29T14:24:54+00:00","description":"Learn how to get the first x characters from an identification number or zip code in Excel. Download the file and use LEFT and RIGHT functions.","breadcrumb":{"@id":"https:\/\/officetuts.net\/excel\/formulas\/get-the-first-x-characters\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/officetuts.net\/excel\/formulas\/get-the-first-x-characters\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/officetuts.net\/excel\/formulas\/get-the-first-x-characters\/#primaryimage","url":"http:\/\/officetuts.net\/excel\/wp-content\/uploads\/sites\/2\/2018\/10\/identification-number.png","contentUrl":"http:\/\/officetuts.net\/excel\/wp-content\/uploads\/sites\/2\/2018\/10\/identification-number.png"},{"@type":"BreadcrumbList","@id":"https:\/\/officetuts.net\/excel\/formulas\/get-the-first-x-characters\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/officetuts.net\/excel\/"},{"@type":"ListItem","position":2,"name":"Get the First x Characters in Excel"}]},{"@type":"WebSite","@id":"https:\/\/officetuts.net\/excel\/#website","url":"https:\/\/officetuts.net\/excel\/","name":"","description":"","publisher":{"@id":"https:\/\/officetuts.net\/excel\/#\/schema\/person\/41b0b6996aaa4c4127f86f3d24452d42"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/officetuts.net\/excel\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":["Person","Organization"],"@id":"https:\/\/officetuts.net\/excel\/#\/schema\/person\/41b0b6996aaa4c4127f86f3d24452d42","name":"Tomasz Decker","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/officetuts.net\/excel\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/18cbe22837193574870ae40ba56bf712?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/18cbe22837193574870ae40ba56bf712?s=96&d=mm&r=g","caption":"Tomasz Decker"},"logo":{"@id":"https:\/\/officetuts.net\/excel\/#\/schema\/person\/image\/"},"description":"Spreadsheet and Python enthusiast."}]}},"_links":{"self":[{"href":"https:\/\/officetuts.net\/excel\/wp-json\/wp\/v2\/posts\/3246"}],"collection":[{"href":"https:\/\/officetuts.net\/excel\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/officetuts.net\/excel\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/officetuts.net\/excel\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/officetuts.net\/excel\/wp-json\/wp\/v2\/comments?post=3246"}],"version-history":[{"count":3,"href":"https:\/\/officetuts.net\/excel\/wp-json\/wp\/v2\/posts\/3246\/revisions"}],"predecessor-version":[{"id":13604,"href":"https:\/\/officetuts.net\/excel\/wp-json\/wp\/v2\/posts\/3246\/revisions\/13604"}],"wp:attachment":[{"href":"https:\/\/officetuts.net\/excel\/wp-json\/wp\/v2\/media?parent=3246"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/officetuts.net\/excel\/wp-json\/wp\/v2\/categories?post=3246"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/officetuts.net\/excel\/wp-json\/wp\/v2\/tags?post=3246"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}