{"id":20607,"date":"2018-01-08T11:00:00","date_gmt":"2018-01-08T11:00:00","guid":{"rendered":"https:\/\/www.softwaretestinghelp.com\/?page_id=20607"},"modified":"2025-04-01T08:01:44","modified_gmt":"2025-04-01T08:01:44","slug":"vbscript-conditional-statements-tutorial-4","status":"publish","type":"page","link":"https:\/\/www.softwaretestinghelp.com\/vbscript-conditional-statements-tutorial-4\/","title":{"rendered":"VBScript Conditional Statements: VBScript If, ElseIf, Select Case"},"content":{"rendered":"\n<p><strong>Introduction to Conditional Statements:&nbsp;VBScript Tutorial #4<\/strong><\/p>\n\n\n\n<p>We discussed \u2018<a href=\"https:\/\/www.softwaretestinghelp.com\/vbscript-constants-and-operators-tutorial-3\/\" target=\"_blank\" rel=\"noopener\">Constants, Operators and Operators Precedence in the VBScript<\/a>&#8216; in my previous <strong>3rd tutorial<\/strong> in the &#8216;<a href=\"https:\/\/www.softwaretestinghelp.com\/vbscript-tutorial-1\/\" target=\"_blank\" rel=\"noopener\">Learning VBScript<\/a>&#8216; series.<\/p>\n\n\n\n<p>Here, I will explain the different Conditional Statements used in the VBScript. It would help if you had a good understanding of these conditional statements to proceed with the subsequent topics easily. <em><\/wp-block><\/em><\/p>\n\n\n\n<p><strong><em>This tutorial briefs you about the meaning and types of Conditional Statements in detail along with simple examples for your easy understanding.<\/em><\/strong><\/p>\n\n\n\n<p><em><strong>Let\u2019s discuss Conditional Statements.<\/strong><\/em><\/p>\n\n\n\n<figure class=\"wp-block-image size-full is-resized\"><img decoding=\"async\" width=\"1000\" height=\"563\" src=\"https:\/\/www.softwaretestinghelp.com\/wp-content\/qa\/uploads\/2024\/11\/VBScript-Conditional-Statements.png\" alt=\"VBScript Conditional Statements\" class=\"wp-image-315979\" style=\"width:700px\" srcset=\"https:\/\/www.softwaretestinghelp.com\/wp-content\/qa\/uploads\/2024\/11\/VBScript-Conditional-Statements.png 1000w, https:\/\/www.softwaretestinghelp.com\/wp-content\/qa\/uploads\/2024\/11\/VBScript-Conditional-Statements-300x169.png 300w, https:\/\/www.softwaretestinghelp.com\/wp-content\/qa\/uploads\/2024\/11\/VBScript-Conditional-Statements-768x432.png 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" \/><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\">Conditional Statements<\/h3>\n\n\n\n<p>As the name itself explains, <strong>Conditional Statements<\/strong> refer to a set of statements that are written to meet a particular condition. In simple terms, these are such statements that help in the decision-making process by enabling one to check if any specific condition is met or not as per the requirement of a program.<\/p>\n\n\n\n<p>At times a situation may occur when in a piece of code, some actions are required to be performed for taking some decisions and Conditional Statements satisfy this criterion. These statements are widely used during coding, hence they form the basis of a programming language.<\/p>\n\n\n\n<p>Let me quote a simple <strong><span style=\"text-decoration: underline;\"><em>Example<\/em><\/span><\/strong> from our day-to-day life to make you understand this more clearly. Let&#8217;s consider a scenario that <em>\u2018you have to go to some party today<\/em> but there are some conditions for that. If the cab comes then you will be able to go to the party or else you will have to miss the party.<\/p>\n\n\n\n<p><em><strong>In such a case,&nbsp;conditional statements can be written as follows:<\/strong><\/em><\/p>\n\n\n\n<p><em>If a cab comes Then<\/em><br><em>&nbsp; &nbsp;you will go <\/em>to<em> the party<\/em><br><em>Else<\/em><br><em>&nbsp; &nbsp;you will miss the party<\/em><br><em>End If<\/em><\/p>\n\n\n\n<p>Let&#8217;s discuss the various types of Conditional Statements in the VBScript.<\/p>\n\n\n\n<p><strong>Suggested reading =&gt;&gt; <a href=\"https:\/\/www.softwaretestinghelp.com\/conditional-statements-in-vba\/\" target=\"_blank\" rel=\"noopener\">Conditional statements in VBA<\/a><\/strong><\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Various Conditional Statements in the VBScript<\/h3>\n\n\n\n<p>VBScript language supports 4 kinds of Conditional Statements.<\/p>\n\n\n\n<p>Most of us must already be aware of these statements while working in other programming languages. Out of these statements, any one statement can be used based on your requirement and it&#8217;s up to you to decide and pick the best option for a specific scenario.<\/p>\n\n\n\n<p><em><strong>Following is the list of Conditional Statements:<\/strong><\/em><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>VBScript If\u2026End If Statement<\/li>\n\n\n\n<li>VBScript If\u2026Else\u2026End If Statement<\/li>\n\n\n\n<li>VBScript If\u2026ElseIf&#8230;Else\u2026End If Statement<\/li>\n\n\n\n<li>VBScript Select Case\u2026End Select Statement<\/li>\n<\/ul>\n\n\n\n<p><em><strong>Let\u2019s discuss each of these statements in detail.<\/strong><\/em><\/p>\n\n\n\n<h4 class=\"wp-block-heading\">#1) VBScript If\u2026End If Statement<\/h4>\n\n\n\n<p>This Conditional Statement is the most basic and widely used one out of all the 4 Conditional Statements available. Also, it is very easy to use and understand.<\/p>\n\n\n\n<p>This is used in those scenarios where there is any specific condition to be met and if that condition is satisfied then some specific lines of statements that are written inside the \u2018If\u2026End If\u2019 will be executed.<\/p>\n\n\n\n<p><strong>Let\u2019s understand this with the help of a simple example.<\/strong><\/p>\n\n\n\n<p><span style=\"text-decoration: underline;\"><em><strong>Example:<\/strong><\/em><\/span><\/p>\n\n\n\n<p>If you want to display some specific message based on the value of some variable then If\u2026End If Statement can be used in the following manner.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">&lt;html&gt;\n&lt;head&gt;\n&lt;title&gt;Let\u2019s see implementation of If End If Statement&lt;\/title&gt;\n&lt;\/head&gt;\n&lt;body&gt;\n&lt;script language=\u201dvbscript\u201d type=\u201dtext\/vbscript\u201d&gt;\nDim val = \u201cWow\u201d\nIf val = \u201cWow\u201d Then\n document.write (\u201cThis is the correct statement\u201d)\nEnd If\n&lt;\/script&gt;\n&lt;\/body&gt;\n&lt;\/html&gt;<\/pre>\n\n\n\n<figure class=\"wp-block-image\"><a href=\"https:\/\/www.softwaretestinghelp.com\/wp-content\/qa\/uploads\/2018\/01\/If-Statement.jpg\"><img decoding=\"async\" width=\"517\" height=\"302\" src=\"https:\/\/www.softwaretestinghelp.com\/wp-content\/qa\/uploads\/2018\/01\/If-Statement.jpg\" alt=\"If Statement\" class=\"wp-image-20653\" srcset=\"https:\/\/www.softwaretestinghelp.com\/wp-content\/qa\/uploads\/2018\/01\/If-Statement.jpg 517w, https:\/\/www.softwaretestinghelp.com\/wp-content\/qa\/uploads\/2018\/01\/If-Statement-300x175.jpg 300w\" sizes=\"(max-width: 517px) 100vw, 517px\" \/><\/a><\/figure>\n\n\n\n<p><\/p>\n\n\n\n<h4 class=\"wp-block-heading\">#2) VBScript If\u2026Else\u2026End If Statement<\/h4>\n\n\n\n<p><strong>This one is the expansion of the If\u2026End If statement.<\/strong> Under this type, the block of statements is divided into 2 parts \u2013 inside the \u2018If\u2019 part and inside the \u2018Else\u2019 part respectively. Either of the 2 parts is executed immediately depending upon which condition is satisfied.<\/p>\n\n\n\n<p><strong>Let\u2019s understand this with the help of a simple example.<\/strong><\/p>\n\n\n\n<p><em><span style=\"text-decoration: underline;\"><strong>Example:<\/strong><\/span><\/em><\/p>\n\n\n\n<p>If there is an expression that will evaluate either True or False. Then in the case of True, some specific message will be displayed and in the case of False, some other message will be displayed.<\/p>\n\n\n\n<p>In such a scenario, you can make use of If\u2026Else\u2026End If Statement in the following way.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">&lt;html&gt;\n&lt;head&gt;\n&lt;title&gt;Let\u2019s see implementation of If Else Statement&lt;\/title&gt;\n&lt;\/head&gt;\n&lt;body&gt;\n&lt;script language=\u201dvbscript\u201d type=\u201dtext\/vbscript\u201d&gt;\nDim val1, a, b\na=5\nb=10\nval1 = (a == b) OR (a&lt;=10)\nIf val1 = True Then\n document.write (\u201cResult of the expression is true\u201d)\nElse\n document.write (\u201cResult of the expression is false\u201d)\nEnd If\n&lt;\/script&gt;\n&lt;\/body&gt;\n&lt;\/html&gt;<\/pre>\n\n\n\n<figure class=\"wp-block-image\"><a href=\"https:\/\/www.softwaretestinghelp.com\/wp-content\/qa\/uploads\/2018\/01\/If-else-statement.jpg\"><img decoding=\"async\" width=\"482\" height=\"418\" src=\"https:\/\/www.softwaretestinghelp.com\/wp-content\/qa\/uploads\/2018\/01\/If-else-statement.jpg\" alt=\"If else statement\" class=\"wp-image-20652\" srcset=\"https:\/\/www.softwaretestinghelp.com\/wp-content\/qa\/uploads\/2018\/01\/If-else-statement.jpg 482w, https:\/\/www.softwaretestinghelp.com\/wp-content\/qa\/uploads\/2018\/01\/If-else-statement-300x260.jpg 300w\" sizes=\"(max-width: 482px) 100vw, 482px\" \/><\/a><\/figure>\n\n\n\n\n\n<h4 class=\"wp-block-heading\">#3) VBScript If\u2026ElseIf&#8230;Else\u2026End If Statement<\/h4>\n\n\n\n<p><strong>This method is an extension of the earlier one i.e. If\u2026Else\u2026End If Statement.<\/strong> When a set of statements is divided into multiple blocks along with the If and Else parts and if some other parts are also required in a code then you can use this Conditional Statement.<\/p>\n\n\n\n<p>At times, a situation may arise when a condition is not satisfied in the \u2018If\u2019 part nor in the \u2018Else\u2019 part, and some other conditions are required to be checked.<\/p>\n\n\n\n<p>In the above-mentioned cases <strong>If\u2026ElseIf\u2026Else\u2026End If Statement<\/strong> can be used.<\/p>\n\n\n\n<p><strong>Let\u2019s understand this clearly with the help of an Example.<\/strong><\/p>\n\n\n\n<p><span style=\"text-decoration: underline;\"><em><strong>Example:<\/strong><\/em><\/span><\/p>\n\n\n\n<p>Let&#8217;s assume a case where you need to check the data type of a variable as to whether it\u2019s of Boolean type, string type, etc. Then in such a scenario you have to check multiple conditions and must move in various blocks one by one and if nothing satisfies the condition then finally, you will move to the Else part of the code.<\/p>\n\n\n\n<p><strong>Let\u2019s take a look at its implementation.<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">&lt;html&gt;\n&lt;head&gt;\n&lt;title&gt;Let\u2019s see implementation of If ElseIf Statement&lt;\/title&gt;\n&lt;\/head&gt;\n&lt;body&gt;\n&lt;script language=\u201dvbscript\u201d type=\u201dtext\/vbscript\u201d&gt;\nDim val\nval = \u201cabcd\u201d\nval1 = VarType(val)\nIf val1 = vbEmpty Then\n document.write (\u201cThis is an Empty variable\u201d)\nElseIf val1=vbNull\n document.write (\u201cThis is a Null variable\u201d)\nElseIf val1=vbString\n document.write (\u201cThis is a variable of String data type\u201d)\nElseIf val1=vbBoolean\n document.write (\u201cThis is a variable of Boolean data type\u201d)\nElse\n document.write (\u201cThis is not a valid variable so cannot identify its data type\u201d)\nEnd If\n&lt;\/script&gt;\n&lt;\/body&gt;\n&lt;\/html&gt;<\/pre>\n\n\n\n<figure class=\"wp-block-image\"><a href=\"https:\/\/www.softwaretestinghelp.com\/wp-content\/qa\/uploads\/2018\/01\/If-Else-if-statement.jpg\"><img decoding=\"async\" width=\"563\" height=\"520\" src=\"https:\/\/www.softwaretestinghelp.com\/wp-content\/qa\/uploads\/2018\/01\/If-Else-if-statement.jpg\" alt=\"If Else if statement\" class=\"wp-image-20651\" srcset=\"https:\/\/www.softwaretestinghelp.com\/wp-content\/qa\/uploads\/2018\/01\/If-Else-if-statement.jpg 563w, https:\/\/www.softwaretestinghelp.com\/wp-content\/qa\/uploads\/2018\/01\/If-Else-if-statement-300x277.jpg 300w\" sizes=\"(max-width: 563px) 100vw, 563px\" \/><\/a><\/figure>\n\n\n\n<p><\/p>\n\n\n\n<h4 class=\"wp-block-heading\">#4) VBScript Select Case\u2026End Select Statement<\/h4>\n\n\n\n<p>This Conditional Statement works in the same manner as the above one i.e. If\u2026ElseIf\u2026Else\u2026End If Statement but as per the observation Select Case is the better option when it comes to working with multiple sets of conditions in a program.<\/p>\n\n\n\n<p>When you work with \u2018If\u2026ElseIf\u2026Else\u2026End If Statement\u2019 you have to move each condition or block one by one until you reach the expected one and this consumes a lot of time and effort. Whereas in the case of Select Statement, you can directly move to the exact case without wasting time by going to each condition one by one.<\/p>\n\n\n\n<p><strong>Let\u2019s see the implementation of the Select Case by referring to the above example itself.<\/strong><\/p>\n\n\n\n<p><span style=\"text-decoration: underline;\"><em><strong>Example:<\/strong><\/em><\/span><\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">&lt;html&gt;\n&lt;head&gt;\n&lt;title&gt;Let\u2019s see implementation of Select Case Statement&lt;\/title&gt;\n&lt;\/head&gt;\n&lt;body&gt;\n&lt;script language=\u201dvbscript\u201d type=\u201dtext\/vbscript\u201d&gt;\nDim val\nval = \u201cabcd\u201d\nSelect Case VarType(val)\nCase vbEmpty\n document.write (\u201cThis is an Empty variable\u201d)\nCase vbNull\n document.write (\u201cThis is a Null variable\u201d)\nCase vbString \n document.write (\u201cThis is a variable of String data type\u201d)\nCase vbBoolean\n document.write (\u201cThis is a variable of Boolean data type\u201d)\nCase Else\n document.write (\u201cThis is not a valid variable so cannot identify its data type\u201d)\nEnd Select\n&lt;\/script&gt;\n&lt;\/body&gt;\n&lt;\/html&gt;<\/pre>\n\n\n\n<figure class=\"wp-block-image\"><a href=\"https:\/\/www.softwaretestinghelp.com\/wp-content\/qa\/uploads\/2018\/01\/Select-Statement.jpg\"><img decoding=\"async\" width=\"582\" height=\"542\" src=\"https:\/\/www.softwaretestinghelp.com\/wp-content\/qa\/uploads\/2018\/01\/Select-Statement.jpg\" alt=\"Select Statement\" class=\"wp-image-20654\" srcset=\"https:\/\/www.softwaretestinghelp.com\/wp-content\/qa\/uploads\/2018\/01\/Select-Statement.jpg 582w, https:\/\/www.softwaretestinghelp.com\/wp-content\/qa\/uploads\/2018\/01\/Select-Statement-300x279.jpg 300w\" sizes=\"(max-width: 582px) 100vw, 582px\" \/><\/a><\/figure>\n\n\n\n<p><\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Conclusion<\/h3>\n\n\n\n<p>I hope that by the end of this tutorial of the <a href=\"https:\/\/www.softwaretestinghelp.com\/vbscript-tutorial-1\/\" target=\"_blank\" rel=\"noopener\">VBScript Series<\/a>, you will be able to understand the subsequent tutorials of this series with ease and comfort.<\/p>\n\n\n\n<p><strong><a href=\"https:\/\/www.softwaretestinghelp.com\/vbscript-loops-tutorial-5\/\" target=\"_blank\" rel=\"noopener\">Next Tutorial #5<\/a>:<\/strong> I will brief you about the various types of loops in the VBScript language in my upcoming tutorials.<\/p>\n\n\n\n<p><strong>Stay tuned for many more tutorials on the VBScript Series.<br><em>Feel free to share your experience working with Conditional Statements and let us know if you have any queries.<\/em><\/strong><\/p>\n\r\n\t\t\t<div id=\"daexthefup-container\"\r\n\t\t\t\tclass=\"daexthefup-container daexthefup-layout-stacked daexthefup-alignment-center\"\r\n\t\t\t\tdata-post-id=\"20607\">\r\n\r\n\t\t\t\t<div class=\"daexthefup-feedback\">\r\n\t\t\t\t\t<div class=\"daexthefup-text\">\r\n\t\t\t\t\t\t<h3 class=\"daexthefup-title\">Was this helpful?<\/h3>\r\n\t\t\t\t\t<\/div>\r\n\t\t\t\t\t<div class=\"daexthefup-buttons-container\">\r\n\t\t\t\t\t\t<div class=\"daexthefup-buttons\">\r\n\t\t\t\t\t\t\t\r\n\t\t\t<div class=\"daexthefup-yes daexthefup-button daexthefup-button-type-icon\" data-value=\"1\">\r\n\t\t\t\t\r\n                <svg>\r\n                    <defs>\r\n                        <style>.thumb-up-cls-1{fill:#c9c9c9;}.thumb-up-cls-2{fill:#e1e1e1;}.thumb-up-cls-3{fill:#676767;}<\/style>\r\n                    <\/defs>\r\n                    <g id=\"thumb_up\">\r\n                        <path class=\"thumb-up-cls-2 daexthefup-icon-circle\" d=\"m24,3c11.58,0,21,9.42,21,21s-9.42,21-21,21S3,35.58,3,24,12.42,3,24,3m0-1C11.85,2,2,11.85,2,24s9.85,22,22,22,22-9.85,22-22S36.15,2,24,2h0Z\" \/>\r\n                        <g>\r\n                            <rect class=\"thumb-up-cls-3 daexthefup-icon-secondary-color\" x=\"10\" y=\"20\" width=\"6\" height=\"15\" rx=\"1.5\" ry=\"1.5\" \/>\r\n                            <path class=\"thumb-up-cls-1 daexthefup-icon-primary-color\" d=\"m30.57,9.06l-.49-.1c-.81-.17-1.61.35-1.78,1.16l-5.3,11.74c-.17.81,3.16,1.61,3.97,1.78l1.96.41c.81.17,1.61-.35,1.78-1.16l2.18-10.27c.34-1.61-.7-3.21-2.31-3.56Z\" \/>\r\n                            <path class=\"thumb-up-cls-1 daexthefup-icon-primary-color\" d=\"m38.17,20h-18.67c-.83,0-1.5.67-1.5,1.5v12c0,.83.67,1.5,1.5,1.5h16.27c.71,0,1.33-.5,1.47-1.21l2.4-12c.19-.93-.53-1.8-1.47-1.8Z\" \/>\r\n                        <\/g>\r\n                    <\/g>\r\n                <\/svg>\t\t\t<\/div>\r\n\r\n\t\t\t\t\t\t\t\t\t\t\r\n\t\t\t<div class=\"daexthefup-no daexthefup-button daexthefup-button-type-icon\" data-value=\"0\">\r\n\t\t\t\t\r\n                <svg>\r\n                    <defs>\r\n                        <style>.thumb-down-cls-1{fill:#c9c9c9;}.thumb-down-cls-2{fill:#e1e1e1;}.thumb-down-cls-3{fill:#676767;}<\/style>\r\n                    <\/defs>\r\n                    <g id=\"thumb_down\">\r\n                        <path class=\"thumb-down-cls-2 daexthefup-icon-circle\" d=\"m24,3c11.58,0,21,9.42,21,21s-9.42,21-21,21S3,35.58,3,24,12.42,3,24,3m0-1C11.85,2,2,11.85,2,24s9.85,22,22,22,22-9.85,22-22S36.15,2,24,2h0Z\" \/>\r\n                        <g>\r\n                            <rect class=\"thumb-down-cls-3 daexthefup-icon-secondary-color\" x=\"10\" y=\"13\" width=\"6\" height=\"15\" rx=\"1.5\" ry=\"1.5\" \/>\r\n                            <path class=\"thumb-down-cls-1 daexthefup-icon-primary-color\" d=\"m30.57,38.94l-.49.1c-.81.17-1.61-.35-1.78-1.16l-5.3-11.74c-.17-.81,3.16-1.61,3.97-1.78l1.96-.41c.81-.17,1.61.35,1.78,1.16l2.18,10.27c.34,1.61-.7,3.21-2.31,3.56Z\" \/>\r\n                            <path class=\"thumb-down-cls-1 daexthefup-icon-primary-color\" d=\"m38.17,28h-18.67c-.83,0-1.5-.67-1.5-1.5v-12c0-.83.67-1.5,1.5-1.5h16.27c.71,0,1.33.5,1.47,1.21l2.4,12c.19.93-.53,1.8-1.47,1.8Z\" \/>\r\n                        <\/g>\r\n                    <\/g>\r\n                <\/svg>\t\t\t<\/div>\r\n\r\n\t\t\t\t\t\t\t\t\t<\/div>\r\n\t\t\t\t\t<\/div>\r\n\t\t\t\t<\/div>\r\n\r\n\t\t\t\t<div class=\"daexthefup-comment\">\r\n\t\t\t\t\t<div class=\"daexthefup-comment-top-container\">\r\n\t\t\t\t\t\t<label id=\"daexthefup-comment-label\" class=\"daexthefup-comment-label\"><\/label>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"daexthefup-comment-character-counter-container\">\r\n\t\t\t\t\t\t\t\t<div id=\"daexthefup-comment-character-counter-number\"\r\n\t\t\t\t\t\t\t\t\tclass=\"daexthefup-comment-character-counter-number\"><\/div>\r\n\t\t\t\t\t\t\t\t<div class=\"daexthefup-comment-character-counter-text\"><\/div>\r\n\t\t\t\t\t\t\t<\/div>\r\n\t\t\t\t\t\t\t\t\t\t\t<\/div>\r\n\t\t\t\t\t<textarea id=\"daexthefup-comment-textarea\" class=\"daexthefup-comment-textarea\"\r\n\t\t\t\t\t\t\t\tplaceholder=\"Type your message\"\r\n\t\t\t\t\t\t\t\tmaxlength=\"\r\n\t\t\t\t\t\t\t\t400\t\t\t\t\t\t\t\t\t\"><\/textarea>\r\n\t\t\t\t\t<div class=\"daexthefup-comment-buttons-container\">\r\n\t\t\t\t\t\t<button class=\"daexthefup-comment-submit daexthefup-button\">Submit<\/button>\r\n\t\t\t\t\t\t<button class=\"daexthefup-comment-cancel daexthefup-button\">Cancel<\/button>\r\n\t\t\t\t\t<\/div>\r\n\t\t\t\t<\/div>\r\n\r\n\t\t\t\t<div class=\"daexthefup-successful-submission-text\">Thanks for your feedback!<\/div>\r\n\r\n\t\t\t<\/div>\r\n\r\n\t\t\t","protected":false},"excerpt":{"rendered":"<p>Introduction to Conditional Statements:&nbsp;VBScript Tutorial #4 We discussed \u2018Constants, Operators and Operators Precedence in the VBScript&#8216; in my previous 3rd tutorial in the &#8216;Learning VBScript&#8216; series. Here, I will explain the different Conditional Statements used in the VBScript. It would help if you had a good understanding of these conditional &#8230; <\/p>\n<p class=\"read-more-container\"><a title=\"VBScript Conditional Statements: VBScript If, ElseIf, Select Case\" class=\"read-more button\" href=\"https:\/\/www.softwaretestinghelp.com\/vbscript-conditional-statements-tutorial-4\/#more-20607\" aria-label=\"Read more about VBScript Conditional Statements: VBScript If, ElseIf, Select Case\">Read more<\/a><\/p>\n","protected":false},"author":1,"featured_media":315979,"parent":0,"menu_order":0,"comment_status":"open","ping_status":"closed","template":"","meta":{"_acf_changed":false,"_helpful_pro_status":1,"footnotes":""},"categories":[406],"tags":[],"class_list":{"0":"post-20607","1":"page","2":"type-page","3":"status-publish","4":"has-post-thumbnail","6":"category-vbscript"},"acf":[],"_links":{"self":[{"href":"https:\/\/www.softwaretestinghelp.com\/wp-json\/wp\/v2\/pages\/20607","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.softwaretestinghelp.com\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/www.softwaretestinghelp.com\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/www.softwaretestinghelp.com\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.softwaretestinghelp.com\/wp-json\/wp\/v2\/comments?post=20607"}],"version-history":[{"count":0,"href":"https:\/\/www.softwaretestinghelp.com\/wp-json\/wp\/v2\/pages\/20607\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.softwaretestinghelp.com\/wp-json\/wp\/v2\/media\/315979"}],"wp:attachment":[{"href":"https:\/\/www.softwaretestinghelp.com\/wp-json\/wp\/v2\/media?parent=20607"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.softwaretestinghelp.com\/wp-json\/wp\/v2\/categories?post=20607"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.softwaretestinghelp.com\/wp-json\/wp\/v2\/tags?post=20607"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}