PowerApps Portal, Learn few example of arrays. Example 1: {% for i in (1..5) %} {{ i }} {% endfor %} Example 2: {% assign myarray = "Koti,Bala,Sai,Teja" | split:',' %} {{myarray}} <br /> For loop output:<br /> {% for obj in myarray %} {{obj}} {%endfor%} Example 3: Filter with in the array data by using if condition {% for i in ( 1..5 ) %} {% if i == 4 %} {{ i }} {% endif %} {% endfor %} Another best example of filter using if condition {% for i in ( 1..5 ) %} {% if i == 4 %} {% continue %} {% else %} {{ i }} {% endif %} {% endfor %} Example 4: Fetch entity data (dataverse data) The below example: transactioncurrency is the table name(internal table name). "Active Currencies" is the view name. {% entityview logical_name :' transactioncurrency ', name :' Active Currencies ' %} < p > We support {{ entityview . total_records }} currencies. </ p > < ul > {% for cur in entityview . records ...