| Line 2: |
Line 2: |
| | <pre style="background-color: #ACC8E5; color: #112A46; border-radius: 10px; padding: 10px;"> | | <pre style="background-color: #ACC8E5; color: #112A46; border-radius: 10px; padding: 10px;"> |
| | Allows one or more actions to be repeated a fixed number of times. | | Allows one or more actions to be repeated a fixed number of times. |
| | + | |
| | Selecting this option allows the user to specify exactly how many times the actions should be performed within the loop. | | Selecting this option allows the user to specify exactly how many times the actions should be performed within the loop. |
| | + | |
| | It is ideal for situations where a fixed number of iterations is required, ensuring precision and control in the execution of the macro. | | It is ideal for situations where a fixed number of iterations is required, ensuring precision and control in the execution of the macro. |
| | </pre> | | </pre> |
| | * ''''' While 'condition' ''''' | | * ''''' While 'condition' ''''' |
| | <pre style="background-color: #ACC8E5; color: #112A46; border-radius: 10px; padding: 10px;"> | | <pre style="background-color: #ACC8E5; color: #112A46; border-radius: 10px; padding: 10px;"> |
| − | Before executing any instruction inside the loop, the condition is first evaluated. If the condition is true, the code inside the loop is executed. | + | Before executing any instruction inside the loop, the condition is first evaluated. |
| | + | |
| | + | If the condition is true, the code inside the loop is executed. |
| | + | |
| | This process of evaluating the condition and executing the code is repeated until the condition becomes false. | | This process of evaluating the condition and executing the code is repeated until the condition becomes false. |
| | + | |
| | If the condition is false from the start, the code inside the loop is not executed at all. | | If the condition is false from the start, the code inside the loop is not executed at all. |
| | </pre> | | </pre> |
| Line 14: |
Line 20: |
| | <pre style="background-color: #ACC8E5; color: #112A46; border-radius: 10px; padding: 10px;"> | | <pre style="background-color: #ACC8E5; color: #112A46; border-radius: 10px; padding: 10px;"> |
| | In this type of loop, the actions inside the loop are executed once before the condition is evaluated for the first time. | | In this type of loop, the actions inside the loop are executed once before the condition is evaluated for the first time. |
| | + | |
| | After this first execution, the condition is evaluated. | | After this first execution, the condition is evaluated. |
| | + | |
| | If the condition is true, the loop repeats. If it is false, the loop terminates. | | If the condition is true, the loop repeats. If it is false, the loop terminates. |
| | + | |
| | The distinguishing feature here is that the code inside the loop is guaranteed to be executed at least once, regardless of the initial condition. | | The distinguishing feature here is that the code inside the loop is guaranteed to be executed at least once, regardless of the initial condition. |
| | </pre> | | </pre> |