{"id":4599,"date":"2025-01-03T16:56:30","date_gmt":"2025-01-03T16:56:30","guid":{"rendered":"https:\/\/quebit.com\/askquebit\/?p=4599"},"modified":"2026-01-20T15:35:42","modified_gmt":"2026-01-20T15:35:42","slug":"using-if-and-while-statements-in-ibm-planning-analytics-turbointegrator-processes","status":"publish","type":"post","link":"https:\/\/quebit.com\/askquebit\/using-if-and-while-statements-in-ibm-planning-analytics-turbointegrator-processes\/","title":{"rendered":"How Do I Use IF and WHILE Statements in IBM Planning Analytics TurboIntegrator Processes?"},"content":{"rendered":"<p><strong>Using IF and WHILE Statements in IBM Planning Analytics TurboIntegrator Processes<\/strong><\/p>\n<p>IBM Planning Analytics provides powerful scripting capabilities within TurboIntegrator (TI) processes, allowing developers to create dynamic, flexible models. Two foundational constructs used in these scripts are the <strong>IF<\/strong> and <strong>WHILE<\/strong> statements. <strong>IF<\/strong> statements are primarily used for conditional execution of code, and <strong>WHILE <\/strong>statements are used to execute a portion of code iteratively. This article explores how to effectively use these statements to control logic and iterate through operations.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-medium wp-image-4600\" src=\"https:\/\/quebit.com\/askquebit\/wp-content\/uploads\/2024\/12\/Picture1-300x300.jpg\" alt=\"\" width=\"300\" height=\"300\" srcset=\"https:\/\/quebit.com\/askquebit\/wp-content\/uploads\/2024\/12\/Picture1-300x300.jpg 300w, https:\/\/quebit.com\/askquebit\/wp-content\/uploads\/2024\/12\/Picture1-1024x1024.jpg 1024w, https:\/\/quebit.com\/askquebit\/wp-content\/uploads\/2024\/12\/Picture1-150x150.jpg 150w, https:\/\/quebit.com\/askquebit\/wp-content\/uploads\/2024\/12\/Picture1-768x768.jpg 768w, https:\/\/quebit.com\/askquebit\/wp-content\/uploads\/2024\/12\/Picture1.jpg 1200w\" sizes=\"auto, (max-width: 300px) 100vw, 300px\" \/><\/p>\n<p><strong>IF Statements<\/strong><\/p>\n<p>An <strong>IF<\/strong> statement is used to evaluate a condition and execute a block of code only if that condition is true. Optionally, as many <strong>ELSEIF <\/strong>statements can be included within the <strong>IF <\/strong>statement to check multiple conditions and execute different code respectively. As another optional addition to the statement, an <strong>ELSE <\/strong>can be used to execute code when no other conditions in the <strong>IF <\/strong>statement have been met.<\/p>\n<p><strong>Syntax<\/strong><\/p>\n<p>IF( Condition ) ;<\/p>\n<p># Code to execute if Condition is true;<\/p>\n<p>ELSEIF( AnotherCondition ) ;<\/p>\n<p># Code to execute if AnotherCondition is true and no preceding conditions are true;<\/p>\n<p>ELSE ;<\/p>\n<p># Code to execute if no preceding conditions are true;<\/p>\n<p>ENDIF ;<\/p>\n<p>As seen in the syntax above, the <strong>IF <\/strong>statement starts with \u201c<strong>IF<\/strong>\u201d directly followed by the condition that is being checked by the statement within parentheses. The code in the lines below the statement will execute as long as the condition is true. Any applicable code can be executed here, including additional nested <strong>IF <\/strong>statements. The code to be executed is traditionally indented slightly to make the code easier to read.<\/p>\n<p>At this point, if there is only one condition to check, the <strong>IF<\/strong> statement can be finished by adding the <strong>ENDIF<\/strong> to a new line under the current code. The <strong>IF <\/strong>statement, as a whole, includes everything between the \u201c<strong>IF<\/strong>\u201d and the \u201c<strong>ENDIF<\/strong>\u201d. If there are additional conditions to be checked with associated code to be run, <strong>ELSEIF <\/strong>statements can be included. IF there is code that should be run when all checked conditions are false, an <strong>ELSE <\/strong>statement can be added.<\/p>\n<p>It should be noted that no mater how many conditions are checked during the statement, only the first condition that is TRUE will execute its associated code. Because of this, the order of conditions to check is important when adding <strong>ELSEIF<\/strong> to the statement. If the first condition is evaluated to be TRUE, no other code associated with other conditions will be executed even if their conditions would have evaluated to be TRUE.<\/p>\n<p><strong>Practical Example<\/strong><\/p>\n<p>IF( x &gt; 5 ) ;<\/p>\n<p>answer = &#8216;x is greater than 5&#8217; ;<\/p>\n<p>ELSEIF( x &lt; 5 ) ;<\/p>\n<p>answer = &#8216;x is less than 5&#8217; ;<\/p>\n<p>ELSE ;<\/p>\n<p>answer = &#8216;x is 5&#8217; ;<\/p>\n<p>ENDIF ;<\/p>\n<p><em>Simply defines a text variable based on the value of x.<\/em><\/p>\n<p><em>\u00a0<\/em><\/p>\n<p><strong>Tips for Effective Use<\/strong><\/p>\n<ul>\n<li><strong>Combine Conditions:<\/strong> Use logical operators (AND, OR, NOT) to combine multiple conditions.<\/li>\n<li><strong>Nest IF Statements:<\/strong> Use nested IF statements to evaluate complex conditions.<\/li>\n<li><strong>Check Execution Order:<\/strong> Only the first true condition will execute its code. Ensure conditions are written in the intended order.<\/li>\n<li><strong>Readability:<\/strong> Indent lines of code after their associated conditions to improve the readability of the code. This is especially important when nesting additional statements.<\/li>\n<\/ul>\n<p><strong>WHILE Statements<\/strong><\/p>\n<p>A <strong>WHILE<\/strong> statement is used to repeatedly execute a block of code <em>while<\/em> a specified condition is true. It\u2019s ideal for looping through operations.<\/p>\n<p><strong>Syntax<\/strong><\/p>\n<p>WHILE( Condition ) ;<\/p>\n<p># Code to execute repeatedly while Condition is true;<\/p>\n<p>IF( BreakCondition ) ;<\/p>\n<p>BREAK;<\/p>\n<p>ENDIF;<\/p>\n<p>END;<\/p>\n<p>As seen in the syntax above, the <strong>WHILE<\/strong> statement starts with \u201c<strong>WHILE<\/strong>\u201d directly followed by the condition that is being checked by the statement within parentheses. The code in the lines below the statement will execute as long as the condition is true. Once reaching the \u201c<strong>END<\/strong>\u201d at the end of the statement, the condition will be evaluated again. If it is still TRUE, the code within the <strong>WHILE<\/strong> statement will execute again. If FALSE, the statement is complete and will not execute again. The code to be executed is traditionally indented slightly to make the code easier to read.<\/p>\n<p>Optionally, an <strong>IF<\/strong> statement can be included in the loop to stop execution of the <strong>WHILE<\/strong> loop with a <strong>BREAK<\/strong> statement if the condition is met. This can be helpful to avoid endless loops, or preventing unnecessary iterations.<\/p>\n<p><strong>Practical Example<\/strong><\/p>\n<p>Count = 1 ;<\/p>\n<p>Max = 5 ;<\/p>\n<p>WHILE( Count &lt;= Max ) ;<\/p>\n<p>ASCIIOutput( \u2018count.txt\u2019 , NumberToString( Count ) ) ;<\/p>\n<p>Count = Count + 1 ;<\/p>\n<p>END ;<\/p>\n<p><em>Simply loops through the numbers 1 to 5 and outputs them to a file<\/em><\/p>\n<p><strong>Tips for Effective Use<\/strong><\/p>\n<ul>\n<li><strong>Avoid Infinite Loops:<\/strong> Ensure the condition changes within the loop to prevent endless execution. Often a counting variable is used to help with this. If using a counting variable, ensure it is incremented appropriately within the statement.<\/li>\n<li><strong>Use Break Conditions:<\/strong> Combine IF statements to exit loops early if needed.<\/li>\n<li><strong>Readability:<\/strong> Indent lines of code after their associated conditions to improve the readability of the code. This is especially important when nesting additional statements.<\/li>\n<\/ul>\n<p><strong>Common Pitfalls and How to Avoid Them<\/strong><\/p>\n<ul>\n<li><strong>Mismatched Syntax:<\/strong> Ensure each <strong>IF<\/strong> has a matching <strong>ENDIF<\/strong> and each <strong>WHILE<\/strong> has an <strong>END<\/strong>. Placing the statements in the correct location in the code is also vitally important to ensuring the logic functions as intended.<\/li>\n<li><strong>Unoptimized Conditions:<\/strong> Evaluate conditions carefully to avoid unnecessary processing overhead.<\/li>\n<li><strong>Infinite Loops:<\/strong> Always test loops thoroughly to confirm they terminate correctly.<\/li>\n<li><strong>Excessive Looping:<\/strong> Looping over large data sets, especially if nesting WHILE loops can cause overhead in a process.<\/li>\n<\/ul>\n","protected":false},"excerpt":{"rendered":"<p>Using IF and WHILE Statements in IBM Planning Analytics TurboIntegrator Processes IBM Planning Analytics provides powerful scripting capabilities within TurboIntegrator (TI) processes, allowing developers to create dynamic, flexible models. Two foundational constructs used in these scripts are the IF and WHILE statements. IF statements are primarily used for conditional execution of code, and WHILE statements&hellip;<\/p>\n","protected":false},"author":5,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[24],"tags":[108,51],"class_list":["post-4599","post","type-post","status-publish","format-standard","hentry","category-ibm","tag-ibm-planning-analytics","tag-planning-analytics-how-tos"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How Do I Use IF and WHILE Statements in IBM Planning Analytics TurboIntegrator Processes? - QueBIT<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/quebit.com\/askquebit\/using-if-and-while-statements-in-ibm-planning-analytics-turbointegrator-processes\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How Do I Use IF and WHILE Statements in IBM Planning Analytics TurboIntegrator Processes? - QueBIT\" \/>\n<meta property=\"og:description\" content=\"Using IF and WHILE Statements in IBM Planning Analytics TurboIntegrator Processes IBM Planning Analytics provides powerful scripting capabilities within TurboIntegrator (TI) processes, allowing developers to create dynamic, flexible models. Two foundational constructs used in these scripts are the IF and WHILE statements. IF statements are primarily used for conditional execution of code, and WHILE statements&hellip;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/quebit.com\/askquebit\/using-if-and-while-statements-in-ibm-planning-analytics-turbointegrator-processes\/\" \/>\n<meta property=\"og:site_name\" content=\"QueBIT\" \/>\n<meta property=\"article:published_time\" content=\"2025-01-03T16:56:30+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-01-20T15:35:42+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/quebit.com\/askquebit\/wp-content\/uploads\/2024\/12\/Picture1.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"1200\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Jennifer Field\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Jennifer Field\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/using-if-and-while-statements-in-ibm-planning-analytics-turbointegrator-processes\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/using-if-and-while-statements-in-ibm-planning-analytics-turbointegrator-processes\\\/\"},\"author\":{\"name\":\"Jennifer Field\",\"@id\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/#\\\/schema\\\/person\\\/082a9c4156466b9cdad2632e3de62601\"},\"headline\":\"How Do I Use IF and WHILE Statements in IBM Planning Analytics TurboIntegrator Processes?\",\"datePublished\":\"2025-01-03T16:56:30+00:00\",\"dateModified\":\"2026-01-20T15:35:42+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/using-if-and-while-statements-in-ibm-planning-analytics-turbointegrator-processes\\\/\"},\"wordCount\":899,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/using-if-and-while-statements-in-ibm-planning-analytics-turbointegrator-processes\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/wp-content\\\/uploads\\\/2024\\\/12\\\/Picture1-300x300.jpg\",\"keywords\":[\"IBM Planning Analytics\",\"Planning Analytics How To's\"],\"articleSection\":[\"IBM\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/quebit.com\\\/askquebit\\\/using-if-and-while-statements-in-ibm-planning-analytics-turbointegrator-processes\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/using-if-and-while-statements-in-ibm-planning-analytics-turbointegrator-processes\\\/\",\"url\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/using-if-and-while-statements-in-ibm-planning-analytics-turbointegrator-processes\\\/\",\"name\":\"How Do I Use IF and WHILE Statements in IBM Planning Analytics TurboIntegrator Processes? - QueBIT\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/using-if-and-while-statements-in-ibm-planning-analytics-turbointegrator-processes\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/using-if-and-while-statements-in-ibm-planning-analytics-turbointegrator-processes\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/wp-content\\\/uploads\\\/2024\\\/12\\\/Picture1-300x300.jpg\",\"datePublished\":\"2025-01-03T16:56:30+00:00\",\"dateModified\":\"2026-01-20T15:35:42+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/#\\\/schema\\\/person\\\/082a9c4156466b9cdad2632e3de62601\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/using-if-and-while-statements-in-ibm-planning-analytics-turbointegrator-processes\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/quebit.com\\\/askquebit\\\/using-if-and-while-statements-in-ibm-planning-analytics-turbointegrator-processes\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/using-if-and-while-statements-in-ibm-planning-analytics-turbointegrator-processes\\\/#primaryimage\",\"url\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/wp-content\\\/uploads\\\/2024\\\/12\\\/Picture1.jpg\",\"contentUrl\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/wp-content\\\/uploads\\\/2024\\\/12\\\/Picture1.jpg\",\"width\":1200,\"height\":1200},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/using-if-and-while-statements-in-ibm-planning-analytics-turbointegrator-processes\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How Do I Use IF and WHILE Statements in IBM Planning Analytics TurboIntegrator Processes?\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/#website\",\"url\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/\",\"name\":\"QueBIT\",\"description\":\"QueBIT\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/#\\\/schema\\\/person\\\/082a9c4156466b9cdad2632e3de62601\",\"name\":\"Jennifer Field\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/02bd32c7255ad906cd2c6352f643559cfee048a9b227b5b07b6a6f48d5b4a658?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/02bd32c7255ad906cd2c6352f643559cfee048a9b227b5b07b6a6f48d5b4a658?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/02bd32c7255ad906cd2c6352f643559cfee048a9b227b5b07b6a6f48d5b4a658?s=96&d=mm&r=g\",\"caption\":\"Jennifer Field\"},\"url\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/author\\\/quebit\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How Do I Use IF and WHILE Statements in IBM Planning Analytics TurboIntegrator Processes? - QueBIT","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:\/\/quebit.com\/askquebit\/using-if-and-while-statements-in-ibm-planning-analytics-turbointegrator-processes\/","og_locale":"en_US","og_type":"article","og_title":"How Do I Use IF and WHILE Statements in IBM Planning Analytics TurboIntegrator Processes? - QueBIT","og_description":"Using IF and WHILE Statements in IBM Planning Analytics TurboIntegrator Processes IBM Planning Analytics provides powerful scripting capabilities within TurboIntegrator (TI) processes, allowing developers to create dynamic, flexible models. Two foundational constructs used in these scripts are the IF and WHILE statements. IF statements are primarily used for conditional execution of code, and WHILE statements&hellip;","og_url":"https:\/\/quebit.com\/askquebit\/using-if-and-while-statements-in-ibm-planning-analytics-turbointegrator-processes\/","og_site_name":"QueBIT","article_published_time":"2025-01-03T16:56:30+00:00","article_modified_time":"2026-01-20T15:35:42+00:00","og_image":[{"width":1200,"height":1200,"url":"https:\/\/quebit.com\/askquebit\/wp-content\/uploads\/2024\/12\/Picture1.jpg","type":"image\/jpeg"}],"author":"Jennifer Field","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Jennifer Field","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/quebit.com\/askquebit\/using-if-and-while-statements-in-ibm-planning-analytics-turbointegrator-processes\/#article","isPartOf":{"@id":"https:\/\/quebit.com\/askquebit\/using-if-and-while-statements-in-ibm-planning-analytics-turbointegrator-processes\/"},"author":{"name":"Jennifer Field","@id":"https:\/\/quebit.com\/askquebit\/#\/schema\/person\/082a9c4156466b9cdad2632e3de62601"},"headline":"How Do I Use IF and WHILE Statements in IBM Planning Analytics TurboIntegrator Processes?","datePublished":"2025-01-03T16:56:30+00:00","dateModified":"2026-01-20T15:35:42+00:00","mainEntityOfPage":{"@id":"https:\/\/quebit.com\/askquebit\/using-if-and-while-statements-in-ibm-planning-analytics-turbointegrator-processes\/"},"wordCount":899,"commentCount":0,"image":{"@id":"https:\/\/quebit.com\/askquebit\/using-if-and-while-statements-in-ibm-planning-analytics-turbointegrator-processes\/#primaryimage"},"thumbnailUrl":"https:\/\/quebit.com\/askquebit\/wp-content\/uploads\/2024\/12\/Picture1-300x300.jpg","keywords":["IBM Planning Analytics","Planning Analytics How To's"],"articleSection":["IBM"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/quebit.com\/askquebit\/using-if-and-while-statements-in-ibm-planning-analytics-turbointegrator-processes\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/quebit.com\/askquebit\/using-if-and-while-statements-in-ibm-planning-analytics-turbointegrator-processes\/","url":"https:\/\/quebit.com\/askquebit\/using-if-and-while-statements-in-ibm-planning-analytics-turbointegrator-processes\/","name":"How Do I Use IF and WHILE Statements in IBM Planning Analytics TurboIntegrator Processes? - QueBIT","isPartOf":{"@id":"https:\/\/quebit.com\/askquebit\/#website"},"primaryImageOfPage":{"@id":"https:\/\/quebit.com\/askquebit\/using-if-and-while-statements-in-ibm-planning-analytics-turbointegrator-processes\/#primaryimage"},"image":{"@id":"https:\/\/quebit.com\/askquebit\/using-if-and-while-statements-in-ibm-planning-analytics-turbointegrator-processes\/#primaryimage"},"thumbnailUrl":"https:\/\/quebit.com\/askquebit\/wp-content\/uploads\/2024\/12\/Picture1-300x300.jpg","datePublished":"2025-01-03T16:56:30+00:00","dateModified":"2026-01-20T15:35:42+00:00","author":{"@id":"https:\/\/quebit.com\/askquebit\/#\/schema\/person\/082a9c4156466b9cdad2632e3de62601"},"breadcrumb":{"@id":"https:\/\/quebit.com\/askquebit\/using-if-and-while-statements-in-ibm-planning-analytics-turbointegrator-processes\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/quebit.com\/askquebit\/using-if-and-while-statements-in-ibm-planning-analytics-turbointegrator-processes\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/quebit.com\/askquebit\/using-if-and-while-statements-in-ibm-planning-analytics-turbointegrator-processes\/#primaryimage","url":"https:\/\/quebit.com\/askquebit\/wp-content\/uploads\/2024\/12\/Picture1.jpg","contentUrl":"https:\/\/quebit.com\/askquebit\/wp-content\/uploads\/2024\/12\/Picture1.jpg","width":1200,"height":1200},{"@type":"BreadcrumbList","@id":"https:\/\/quebit.com\/askquebit\/using-if-and-while-statements-in-ibm-planning-analytics-turbointegrator-processes\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/quebit.com\/askquebit\/"},{"@type":"ListItem","position":2,"name":"How Do I Use IF and WHILE Statements in IBM Planning Analytics TurboIntegrator Processes?"}]},{"@type":"WebSite","@id":"https:\/\/quebit.com\/askquebit\/#website","url":"https:\/\/quebit.com\/askquebit\/","name":"QueBIT","description":"QueBIT","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/quebit.com\/askquebit\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/quebit.com\/askquebit\/#\/schema\/person\/082a9c4156466b9cdad2632e3de62601","name":"Jennifer Field","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/02bd32c7255ad906cd2c6352f643559cfee048a9b227b5b07b6a6f48d5b4a658?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/02bd32c7255ad906cd2c6352f643559cfee048a9b227b5b07b6a6f48d5b4a658?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/02bd32c7255ad906cd2c6352f643559cfee048a9b227b5b07b6a6f48d5b4a658?s=96&d=mm&r=g","caption":"Jennifer Field"},"url":"https:\/\/quebit.com\/askquebit\/author\/quebit\/"}]}},"_links":{"self":[{"href":"https:\/\/quebit.com\/askquebit\/wp-json\/wp\/v2\/posts\/4599","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/quebit.com\/askquebit\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/quebit.com\/askquebit\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/quebit.com\/askquebit\/wp-json\/wp\/v2\/users\/5"}],"replies":[{"embeddable":true,"href":"https:\/\/quebit.com\/askquebit\/wp-json\/wp\/v2\/comments?post=4599"}],"version-history":[{"count":3,"href":"https:\/\/quebit.com\/askquebit\/wp-json\/wp\/v2\/posts\/4599\/revisions"}],"predecessor-version":[{"id":5052,"href":"https:\/\/quebit.com\/askquebit\/wp-json\/wp\/v2\/posts\/4599\/revisions\/5052"}],"wp:attachment":[{"href":"https:\/\/quebit.com\/askquebit\/wp-json\/wp\/v2\/media?parent=4599"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/quebit.com\/askquebit\/wp-json\/wp\/v2\/categories?post=4599"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/quebit.com\/askquebit\/wp-json\/wp\/v2\/tags?post=4599"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}