Skip to main content

Implement an infinite loop (repeated processing)

Power Automate Desktop offers a wealth of action to get data from web pages and on -premises software.

However, the schedule cannot be executed in the free version.Therefore, I think that it is often implemented that monitor specific actions by continuing to execute the flow without ending the flow.

This time, I will explain how to implement an infinite loop.

Step 0 Loop

This is an example of implementation of an infinite loop using "LOOP" action.

Implemented with copy and paste

Copy the following code and paste it on the edit screen of Power Automate Desktop to add the target action.

LOOP FROM 0 TO 1 STEP 0
END

Operate and implement Power Automate Desktop

  1. Enter "Loop" from "Action Search".

  2. The following values are set for the parameters.

    Loop
    Repeated the block of specified number of actions
    パラメーターの選択
    Start value
    0
    end
    1
    incremental
    0
caution

In this case, Loopindex is always 0, so no variable is created.