{"id":1672,"date":"2020-07-09T14:13:20","date_gmt":"2020-07-09T21:13:20","guid":{"rendered":"https:\/\/SUMMALAI.COM\/?p=1672"},"modified":"2020-07-11T11:04:47","modified_gmt":"2020-07-11T18:04:47","slug":"how-to-use-excel-vba-select-case","status":"publish","type":"post","link":"https:\/\/SUMMALAI.COM\/?p=1672","title":{"rendered":"How to use Excel VBA &#8220;Select Case&#8221;"},"content":{"rendered":"\n<h3 class=\"wp-block-heading\" id=\"select-case-statement\">Select Case statement<\/h3>\n\n\n\n<p>Executes one of several groups of&nbsp;statements, depending on the value of an&nbsp;expression.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"syntax\">Syntax<\/h3>\n\n\n\n<p><strong>Select Case<\/strong>&nbsp;<em>testexpression<\/em><br>[&nbsp;<strong>Case<\/strong>&nbsp;<em>expressionlist-n<\/em>&nbsp;[&nbsp;<em>statements-n<\/em>&nbsp;]]<br>[&nbsp;<strong>Case Else<\/strong>&nbsp;[&nbsp;<em>elsestatements<\/em>&nbsp;]]<br><strong>End Select<\/strong><\/p>\n\n\n\n<p>The&nbsp;<strong>Select Case<\/strong>&nbsp;statement syntax has these parts:<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table><thead><tr><th>Part<\/th><th>Description<\/th><\/tr><\/thead><tbody><tr><td><em>testexpression<\/em><\/td><td>Required. Any&nbsp;numeric expression&nbsp;or&nbsp;string expression.<\/td><\/tr><tr><td><em>expressionlist-n<\/em><\/td><td>Required if a&nbsp;Case&nbsp;appears.<br><br>Delimited list of one or more of the following forms:&nbsp;expression,&nbsp;expression to expression,&nbsp;<strong>Is<\/strong><em> comparison operator<\/em>&nbsp;<em>expression<\/em>.<br><br>The&nbsp;<strong>To<\/strong>&nbsp;keyword&nbsp;specifies a range of values. If you use the&nbsp;<strong>To<\/strong>&nbsp;keyword, the smaller value must appear before&nbsp;<strong>To<\/strong>.<br><br>Use the&nbsp;<strong>Is<\/strong>&nbsp;keyword with&nbsp;comparison operators&nbsp;(except&nbsp;<strong>Is<\/strong>&nbsp;and&nbsp;<strong>Like<\/strong>) to specify a range of values. If not supplied, the&nbsp;<strong>Is<\/strong>&nbsp;keyword is automatically inserted.<\/td><\/tr><tr><td><em>statements-n<\/em><\/td><td>Optional. One or more statements executed if&nbsp;<em>testexpression<\/em>&nbsp;matches any part of&nbsp;<em>expressionlist-n<\/em>.<\/td><\/tr><tr><td><em>elsestatements<\/em><\/td><td>Optional. One or more statements executed if&nbsp;<em>testexpression<\/em>&nbsp;doesn&#8217;t match any of the&nbsp;<strong>Case<\/strong>&nbsp;clause.<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"remarks\">Remarks<\/h3>\n\n\n\n<p>If&nbsp;<em>testexpression<\/em>&nbsp;matches any&nbsp;<strong>Case<\/strong>&nbsp;<em>expressionlist<\/em>&nbsp;expression, the&nbsp;<em>statements<\/em>&nbsp;following that&nbsp;<strong>Case<\/strong>&nbsp;clause are executed up to the next&nbsp;<strong>Case<\/strong>&nbsp;clause, or, for the last clause, up to&nbsp;<strong>End Select<\/strong>. Control then passes to the statement following&nbsp;<strong>End Select<\/strong>. If&nbsp;<em>testexpression<\/em>&nbsp;matches an&nbsp;<em>expressionlist<\/em>&nbsp;expression in more than one&nbsp;<strong>Case<\/strong>&nbsp;clause, only the statements following the first match are executed.<\/p>\n\n\n\n<p>The&nbsp;<strong>Case Else<\/strong>&nbsp;clause is used to indicate the&nbsp;<em>elsestatements<\/em>&nbsp;to be executed if no match is found between the&nbsp;<em>testexpression<\/em>&nbsp;and an&nbsp;<em>expressionlist<\/em>&nbsp;in any of the other&nbsp;<strong>Case<\/strong>&nbsp;selections. Although not required, it is a good idea to have a&nbsp;<strong>Case Else<\/strong>&nbsp;statement in your&nbsp;<strong>Select Case<\/strong>&nbsp;block to handle unforeseen&nbsp;<em>testexpression<\/em>&nbsp;values. If no&nbsp;<strong>Case<\/strong>&nbsp;<em>expressionlist<\/em>&nbsp;matches&nbsp;<em>testexpression<\/em>&nbsp;and there is no&nbsp;<strong>Case Else<\/strong>&nbsp;statement, execution continues at the statement following&nbsp;<strong>End Select<\/strong>.<\/p>\n\n\n\n<p>You can use multiple expressions or ranges in each&nbsp;<strong>Case<\/strong>&nbsp;clause. For example, the following line is valid:VBCopy<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>Case 1 To 4, 7 To 9, 11, 13, Is > MaxNumber <\/code><\/pre>\n\n\n\n<p>&nbsp;Note<\/p>\n\n\n\n<p>The&nbsp;<strong>Is<\/strong>&nbsp;comparison operator is not the same as the&nbsp;<strong>Is<\/strong>&nbsp;keyword used in the&nbsp;<strong>Select Case<\/strong>&nbsp;statement.<\/p>\n\n\n\n<p>You also can specify ranges and multiple expressions for character strings. In the following example,&nbsp;<strong>Case<\/strong>&nbsp;matches strings that are exactly equal to&nbsp;<code>everything<\/code>, strings that fall between&nbsp;<code>nuts<\/code>&nbsp;and&nbsp;<code>soup<\/code>&nbsp;in alphabetic order, and the current value of&nbsp;<code>TestItem<\/code>:VBCopy<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>Case \"everything\", \"nuts\" To \"soup\", TestItem <\/code><\/pre>\n\n\n\n<p><strong>Select Case<\/strong>&nbsp;statements can be nested. Each nested&nbsp;<strong>Select Case<\/strong>&nbsp;statement must have a matching&nbsp;<strong>End Select<\/strong>&nbsp;statement.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"example\">Example<\/h3>\n\n\n\n<p>This example uses the&nbsp;<strong>Select Case<\/strong>&nbsp;statement to evaluate the value of a variable. The second&nbsp;<strong>Case<\/strong>&nbsp;clause contains the value of the variable being evaluated, and therefore only the statement associated with it is executed.VBCopy<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>Dim Number \nNumber = 8    ' Initialize variable. \nSelect Case Number    ' Evaluate Number. \nCase 1 To 5    ' Number between 1 and 5, inclusive. \n    Debug.Print \"Between 1 and 5\" \n' The following is the only Case clause that evaluates to True. \nCase 6, 7, 8    ' Number between 6 and 8. \n    Debug.Print \"Between 6 and 8\" \nCase 9 To 10    ' Number is 9 or 10. \nDebug.Print \"Greater than 8\" \nCase Else    ' Other values. \n    Debug.Print \"Not between 1 and 10\" \nEnd Select<\/code><\/pre>\n","protected":false},"excerpt":{"rendered":"<p>Select Case statement Executes one of several groups of&nbsp;statements, depending on the value of an&nbsp;expression. Syntax Select Case&nbsp;testexpression[&nbsp;Case&nbsp;expressionlist-n&nbsp;[&nbsp;statements-n&nbsp;]][&nbsp;Case Else&nbsp;[&nbsp;elsestatements&nbsp;]]End Select The&nbsp;Select Case&nbsp;statement syntax has these parts: Part Description testexpression Required. Any&nbsp;numeric expression&nbsp;or&nbsp;string expression. expressionlist-n Required if a&nbsp;Case&nbsp;appears. Delimited list of one or more of the following forms:&nbsp;expression,&nbsp;expression to expression,&nbsp;Is comparison operator&nbsp;expression. The&nbsp;To&nbsp;keyword&nbsp;specifies a range of <a class=\"read-more\" href=\"https:\/\/SUMMALAI.COM\/?p=1672\">Read More<\/a><\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_bbp_topic_count":0,"_bbp_reply_count":0,"_bbp_total_topic_count":0,"_bbp_total_reply_count":0,"_bbp_voice_count":0,"_bbp_anonymous_reply_count":0,"_bbp_topic_count_hidden":0,"_bbp_reply_count_hidden":0,"_bbp_forum_subforum_count":0,"om_disable_all_campaigns":false,"_monsterinsights_skip_tracking":false,"footnotes":""},"categories":[10,18],"tags":[220,221],"class_list":["post-1672","post","type-post","status-publish","format-standard","hentry","category-microsoft","category-microsoft-office","tag-excel-vba","tag-select-case"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 4.9.10 - aioseo.com -->\n\t<meta name=\"description\" content=\"Select Case statement Executes one of several groups of statements, depending on the value of an expression. Syntax Select Case testexpression[ Case expressionlist-n [ statements-n ]][ Case Else [ elsestatements ]]End Select The Select Case statement syntax has these parts: Remarks If testexpression matches any Case expressionlist expression, the statements following that Case clause are executed up to the next Case clause, or, for the last clause, up to End Select. Control then passes to the statement following End Select. If testexpression matches an expressionlist expression\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"Summa Lai\"\/>\n\t<meta name=\"keywords\" content=\"excel vba,select case,microsoft family,microsoft office\" \/>\n\t<link rel=\"canonical\" href=\"https:\/\/SUMMALAI.COM\/?p=1672\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 4.9.10\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?p=1672#article\",\"name\":\"How to use Excel VBA \\u201cSelect Case\\u201d | Summa Lai\",\"headline\":\"How to use Excel VBA &#8220;Select Case&#8221;\",\"author\":{\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?author=2#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/#person\"},\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?p=1672#articleImage\",\"url\":\"https:\\\/\\\/SUMMALAI.COM\\\/wp-content\\\/uploads\\\/2020\\\/05\\\/Summa_Logo-150x150.png\",\"width\":96,\"height\":96,\"caption\":\"Summa Lai\"},\"datePublished\":\"2020-07-09T14:13:20-07:00\",\"dateModified\":\"2020-07-11T11:04:47-07:00\",\"inLanguage\":\"en-US\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?p=1672#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?p=1672#webpage\"},\"articleSection\":\"Microsoft Family, Microsoft Office, excel vba, select case\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?p=1672#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/SUMMALAI.COM\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?cat=10#listItem\",\"name\":\"Microsoft Family\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?cat=10#listItem\",\"position\":2,\"name\":\"Microsoft Family\",\"item\":\"https:\\\/\\\/SUMMALAI.COM\\\/?cat=10\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?cat=18#listItem\",\"name\":\"Microsoft Office\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?cat=18#listItem\",\"position\":3,\"name\":\"Microsoft Office\",\"item\":\"https:\\\/\\\/SUMMALAI.COM\\\/?cat=18\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?p=1672#listItem\",\"name\":\"How to use Excel VBA &#8220;Select Case&#8221;\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?cat=10#listItem\",\"name\":\"Microsoft Family\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?p=1672#listItem\",\"position\":4,\"name\":\"How to use Excel VBA &#8220;Select Case&#8221;\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?cat=18#listItem\",\"name\":\"Microsoft Office\"}}]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/#person\",\"name\":\"sladmin\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?p=1672#personImage\",\"url\":\"https:\\\/\\\/SUMMALAI.COM\\\/wp-content\\\/uploads\\\/2020\\\/05\\\/Summa_Logo-150x150.png\",\"width\":96,\"height\":96,\"caption\":\"sladmin\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?author=2#author\",\"url\":\"https:\\\/\\\/SUMMALAI.COM\\\/?author=2\",\"name\":\"Summa Lai\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?p=1672#authorImage\",\"url\":\"https:\\\/\\\/SUMMALAI.COM\\\/wp-content\\\/uploads\\\/2020\\\/05\\\/Summa_Logo-150x150.png\",\"width\":96,\"height\":96,\"caption\":\"Summa Lai\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?p=1672#webpage\",\"url\":\"https:\\\/\\\/SUMMALAI.COM\\\/?p=1672\",\"name\":\"How to use Excel VBA \\u201cSelect Case\\u201d | Summa Lai\",\"description\":\"Select Case statement Executes one of several groups of statements, depending on the value of an expression. Syntax Select Case testexpression[ Case expressionlist-n [ statements-n ]][ Case Else [ elsestatements ]]End Select The Select Case statement syntax has these parts: Remarks If testexpression matches any Case expressionlist expression, the statements following that Case clause are executed up to the next Case clause, or, for the last clause, up to End Select. Control then passes to the statement following End Select. If testexpression matches an expressionlist expression\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?p=1672#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?author=2#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?author=2#author\"},\"datePublished\":\"2020-07-09T14:13:20-07:00\",\"dateModified\":\"2020-07-11T11:04:47-07:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/#website\",\"url\":\"https:\\\/\\\/SUMMALAI.COM\\\/\",\"name\":\"Summa Lai\",\"description\":\"Never Stop Learning, Building a Little Wiki...\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/#person\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"How to use Excel VBA \u201cSelect Case\u201d | Summa Lai","description":"Select Case statement Executes one of several groups of statements, depending on the value of an expression. Syntax Select Case testexpression[ Case expressionlist-n [ statements-n ]][ Case Else [ elsestatements ]]End Select The Select Case statement syntax has these parts: Remarks If testexpression matches any Case expressionlist expression, the statements following that Case clause are executed up to the next Case clause, or, for the last clause, up to End Select. Control then passes to the statement following End Select. If testexpression matches an expressionlist expression","canonical_url":"https:\/\/SUMMALAI.COM\/?p=1672","robots":"max-image-preview:large","keywords":"excel vba,select case,microsoft family,microsoft office","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/SUMMALAI.COM\/?p=1672#article","name":"How to use Excel VBA \u201cSelect Case\u201d | Summa Lai","headline":"How to use Excel VBA &#8220;Select Case&#8221;","author":{"@id":"https:\/\/SUMMALAI.COM\/?author=2#author"},"publisher":{"@id":"https:\/\/SUMMALAI.COM\/#person"},"image":{"@type":"ImageObject","@id":"https:\/\/SUMMALAI.COM\/?p=1672#articleImage","url":"https:\/\/SUMMALAI.COM\/wp-content\/uploads\/2020\/05\/Summa_Logo-150x150.png","width":96,"height":96,"caption":"Summa Lai"},"datePublished":"2020-07-09T14:13:20-07:00","dateModified":"2020-07-11T11:04:47-07:00","inLanguage":"en-US","mainEntityOfPage":{"@id":"https:\/\/SUMMALAI.COM\/?p=1672#webpage"},"isPartOf":{"@id":"https:\/\/SUMMALAI.COM\/?p=1672#webpage"},"articleSection":"Microsoft Family, Microsoft Office, excel vba, select case"},{"@type":"BreadcrumbList","@id":"https:\/\/SUMMALAI.COM\/?p=1672#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/SUMMALAI.COM#listItem","position":1,"name":"Home","item":"https:\/\/SUMMALAI.COM","nextItem":{"@type":"ListItem","@id":"https:\/\/SUMMALAI.COM\/?cat=10#listItem","name":"Microsoft Family"}},{"@type":"ListItem","@id":"https:\/\/SUMMALAI.COM\/?cat=10#listItem","position":2,"name":"Microsoft Family","item":"https:\/\/SUMMALAI.COM\/?cat=10","nextItem":{"@type":"ListItem","@id":"https:\/\/SUMMALAI.COM\/?cat=18#listItem","name":"Microsoft Office"},"previousItem":{"@type":"ListItem","@id":"https:\/\/SUMMALAI.COM#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/SUMMALAI.COM\/?cat=18#listItem","position":3,"name":"Microsoft Office","item":"https:\/\/SUMMALAI.COM\/?cat=18","nextItem":{"@type":"ListItem","@id":"https:\/\/SUMMALAI.COM\/?p=1672#listItem","name":"How to use Excel VBA &#8220;Select Case&#8221;"},"previousItem":{"@type":"ListItem","@id":"https:\/\/SUMMALAI.COM\/?cat=10#listItem","name":"Microsoft Family"}},{"@type":"ListItem","@id":"https:\/\/SUMMALAI.COM\/?p=1672#listItem","position":4,"name":"How to use Excel VBA &#8220;Select Case&#8221;","previousItem":{"@type":"ListItem","@id":"https:\/\/SUMMALAI.COM\/?cat=18#listItem","name":"Microsoft Office"}}]},{"@type":"Person","@id":"https:\/\/SUMMALAI.COM\/#person","name":"sladmin","image":{"@type":"ImageObject","@id":"https:\/\/SUMMALAI.COM\/?p=1672#personImage","url":"https:\/\/SUMMALAI.COM\/wp-content\/uploads\/2020\/05\/Summa_Logo-150x150.png","width":96,"height":96,"caption":"sladmin"}},{"@type":"Person","@id":"https:\/\/SUMMALAI.COM\/?author=2#author","url":"https:\/\/SUMMALAI.COM\/?author=2","name":"Summa Lai","image":{"@type":"ImageObject","@id":"https:\/\/SUMMALAI.COM\/?p=1672#authorImage","url":"https:\/\/SUMMALAI.COM\/wp-content\/uploads\/2020\/05\/Summa_Logo-150x150.png","width":96,"height":96,"caption":"Summa Lai"}},{"@type":"WebPage","@id":"https:\/\/SUMMALAI.COM\/?p=1672#webpage","url":"https:\/\/SUMMALAI.COM\/?p=1672","name":"How to use Excel VBA \u201cSelect Case\u201d | Summa Lai","description":"Select Case statement Executes one of several groups of statements, depending on the value of an expression. Syntax Select Case testexpression[ Case expressionlist-n [ statements-n ]][ Case Else [ elsestatements ]]End Select The Select Case statement syntax has these parts: Remarks If testexpression matches any Case expressionlist expression, the statements following that Case clause are executed up to the next Case clause, or, for the last clause, up to End Select. Control then passes to the statement following End Select. If testexpression matches an expressionlist expression","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/SUMMALAI.COM\/#website"},"breadcrumb":{"@id":"https:\/\/SUMMALAI.COM\/?p=1672#breadcrumblist"},"author":{"@id":"https:\/\/SUMMALAI.COM\/?author=2#author"},"creator":{"@id":"https:\/\/SUMMALAI.COM\/?author=2#author"},"datePublished":"2020-07-09T14:13:20-07:00","dateModified":"2020-07-11T11:04:47-07:00"},{"@type":"WebSite","@id":"https:\/\/SUMMALAI.COM\/#website","url":"https:\/\/SUMMALAI.COM\/","name":"Summa Lai","description":"Never Stop Learning, Building a Little Wiki...","inLanguage":"en-US","publisher":{"@id":"https:\/\/SUMMALAI.COM\/#person"}}]}},"aioseo_meta_data":{"post_id":"1672","title":null,"description":"","keywords":"","keyphrases":null,"primary_term":null,"canonical_url":"","og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":null,"og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"Article","isEnabled":true},"graphs":[]},"schema_type":null,"schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":null,"robots_max_videopreview":null,"robots_max_imagepreview":"large","priority":null,"frequency":null,"local_seo":null,"breadcrumb_settings":null,"limit_modified_date":false,"ai":null,"created":"2020-12-20 22:14:40","updated":"2024-01-12 04:34:27","seo_analyzer_scan_date":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/SUMMALAI.COM\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/SUMMALAI.COM\/?cat=10\" title=\"Microsoft Family\">Microsoft Family<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/SUMMALAI.COM\/?cat=18\" title=\"Microsoft Office\">Microsoft Office<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tHow to use Excel VBA \u201cSelect Case\u201d\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/SUMMALAI.COM"},{"label":"Microsoft Family","link":"https:\/\/SUMMALAI.COM\/?cat=10"},{"label":"Microsoft Office","link":"https:\/\/SUMMALAI.COM\/?cat=18"},{"label":"How to use Excel VBA &#8220;Select Case&#8221;","link":"https:\/\/SUMMALAI.COM\/?p=1672"}],"_links":{"self":[{"href":"https:\/\/SUMMALAI.COM\/index.php?rest_route=\/wp\/v2\/posts\/1672","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/SUMMALAI.COM\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/SUMMALAI.COM\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/SUMMALAI.COM\/index.php?rest_route=\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/SUMMALAI.COM\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=1672"}],"version-history":[{"count":0,"href":"https:\/\/SUMMALAI.COM\/index.php?rest_route=\/wp\/v2\/posts\/1672\/revisions"}],"wp:attachment":[{"href":"https:\/\/SUMMALAI.COM\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=1672"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/SUMMALAI.COM\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=1672"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/SUMMALAI.COM\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=1672"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}