web
You’re offline. This is a read only version of the page.
close
Skip to main content

Notifications

Announcements

Community site session details

Community site session details

Session Id :
Power Platform Community / Forums / Power Apps / Concurrent Function no...
Power Apps
Answered

Concurrent Function not working

(0) ShareShare
ReportReport
Posted on by 829
Hi Folks -
 
I have multiple collections rendering during the "OnStart" of my PowerApps applications. I'd like to employ the Concurrent function to speed up the startup however having a bear of a time getting it to validation. Here is what I have, perhaps I need to rewrite my ClearCollection functions??
 
Concurrent(
ClearCollect(
ListActParentList,
ShowColumns(
Filter(
RD_Investment_List,
Portfolio_Status <> "Terminated"
),
"Name"
)
),

Collect(
ListActParentList,
ShowColumns(
Filter(
RD_Target_List,
Portfolio_Status <> "Terminated"
),
"Name"
)
),

Collect(
ListActParentList,
ShowColumns(
Filter(
rdPlatIntInfa,
Portfolio_Status.Value.Value <> "Terminated"
),
"Name"
)
),

ClearCollect(
ListActParentAliasList,
ShowColumns(
Filter(
RD_Investment_List,
Portfolio_Status <> "Terminated"
),
"Alias"
)
),

Collect(
ListActParentAliasList,
ShowColumns(
Filter(
RD_Target_List,
Portfolio_Status <> "Terminated"
),
"Alias"
)
),

Collect(
ListActParentAliasList,
ShowColumns(
Filter(
rdPlatIntInfa,
Portfolio_Status.Value <> "Terminated"
),
"Alias"
)
),

ClearCollect(
DevicePlatformList,
ShowColumns(
Filter(
rdDevice,
RequestStatus.Value = "Published" && !(PortfolioStatus.Value="Terminated")
),
"Alias"
)
),

ClearCollect(
PartnershipList,
ShowColumns(
Filter(
rdPartnership,
!(PortfolioStatus.Value="Terminated")
),
"Parent_Node", "Parent_Alias","Name","Alias"
)
)
)
Thank you!
Categories:
I have the same question (0)
  • Community Power Platform Member Profile Picture
    on at

    Hey,

     

    The Concurrent function evaluates multiple formulas at the same time. 

     

    The ClearCollect function deletes all the records from a collection and then adds a different set of records to the same collection. With a single function, ClearCollect offers the combination of Clear and then Collect.

     

    So as I have noticed you ClearCollect to the same collection - ListActParentList. 

     

    Hope this helps.

  • simms7400 Profile Picture
    829 on at
    Thank you! Those are from the same data sources. I ClearCollect then collect the others from same source.
  • Community Power Platform Member Profile Picture
    on at

    Hey,

     

    You can't predict the order in which formulas within the Concurrent function start and end evaluation.

  • v-xida-msft Profile Picture
    on at

    Hi @simms7400 ,

    Based on the formula that you mentioned, I think there is something wrong with it.

     

    Within the Concurrent formula you provided, you could not determine the execution order of ClearCollect function and Collect function. All formulas within Concurrent function would be executed at the same time.

     

    I have made a test on my side, please consider modify your formula as below:

     

    Clear(ListActParentList); /* <-- Add formula here */
    Clear(ListActParentAliasList); /* <-- Add formula here */
    Clear(DevicePlatformList); /* <-- Add formula here */
    Clear(PartnershipList); /* <-- Add formula here */
    Concurrent(
    Collect(
    ListActParentList,
    ShowColumns(
    Filter(
    RD_Investment_List,
    Portfolio_Status <> "Terminated"
    ),
    "Name"
    )
    ),
    Collect(
    ListActParentList,
    ShowColumns(
    Filter(
    RD_Target_List,
    Portfolio_Status <> "Terminated"
    ),
    "Name"
    )
    ),
    Collect(
    ListActParentList,
    ShowColumns(
    Filter(
    rdPlatIntInfa,
    Portfolio_Status.Value.Value <> "Terminated"
    ),
    "Name"
    )
    ),
    Collect(
    ListActParentAliasList,
    ShowColumns(
    Filter(
    RD_Investment_List,
    Portfolio_Status <> "Terminated"
    ),
    "Alias"
    )
    ),
    Collect(
    ListActParentAliasList,
    ShowColumns(
    Filter(
    RD_Target_List,
    Portfolio_Status <> "Terminated"
    ),
    "Alias"
    )
    ),
    Collect(
    ListActParentAliasList,
    ShowColumns(
    Filter(
    rdPlatIntInfa,
    Portfolio_Status.Value &lt;&gt; "Terminated"
    ),
    "Alias"
    )
    ),
    Collect(
    DevicePlatformList,
    ShowColumns(
    Filter(
    rdDevice,
    RequestStatus.Value = "Published" && Not(PortfolioStatus.Value="Terminated")
    ),
    "Alias"
    )
    ),
    Collect(
    PartnershipList,
    ShowColumns(
    Filter(
    rdPartnership,
    Not(PortfolioStatus.Value="Terminated")
    ),
    "Parent_Node", "Parent_Alias","Name","Alias"
    )
    )
    )

     

    Please consider take a try with above solution, check if the issue is solved.

     

    Best regards,

     

  • simms7400 Profile Picture
    829 on at

    @v-xida-msft  Hi -

     

    Thank you for your help! Getting closer, but still an issue.  For some reason it doesn't like more than 1 collection named the same... Any ideas?

     

    hmmmm.jpg

  • Community Power Platform Member Profile Picture
    on at

    Formulas within the Concurrent function shouldn't contain dependencies on other formulas within the same Concurrent function, and PowerApps shows an error if you try. From within, you can safely take dependencies on formulas outside the Concurrent function because they will complete before the Concurrent function starts. Formulas after the Concurrent function can safely take dependencies on formulas within: they'll all complete before the Concurrent function finishes and moves on to the next formula in a chain (if you use the ;operator). Watch out for subtle order dependencies if you're calling functions or service methods that have side effects.

    You can chain formulas together with the ; operator within an argument to Concurrent. For example, Concurrent( Set( a, 1 ); Set( b, a+1 ), Set( x, 2 ); Set( y, x+2 ) ) evaluates Set( a, 1 ); Set( b, a+1 ) concurrently with Set( x, 2 ); Set( y, x+2 ). In this case, the dependencies within the formulas are fine: a will be set before b, and x will be set before y

     

    Basically you are having dependecies and you cannot access the collection by 2 foemulas at once.

  • Verified answer
    v-xida-msft Profile Picture
    on at

    Hi @simms7400 ,

    Please consider modify your formula as below:

    Clear(ListActParentList); /* <-- Add formula here */
    Clear(ListActParentAliasList); /* <-- Add formula here */
    Clear(DevicePlatformList); /* <-- Add formula here */
    Clear(PartnershipList); /* <-- Add formula here */
    Concurrent(
    Collect(
    ListActParentList,
    ShowColumns(
    Filter(
    RD_Investment_List,
    Portfolio_Status <> "Terminated"
    ),
    "Name"
    ),
    ShowColumns(
    Filter(
    RD_Target_List,
    Portfolio_Status <> "Terminated"
    ),
    "Name"
    ),
    ShowColumns(
    Filter(
    rdPlatIntInfa,
    Portfolio_Status.Value.Value <> "Terminated"
    ),
    "Name"
    )
    ),
    Collect(
    ListActParentAliasList,
    ShowColumns(
    Filter(
    RD_Investment_List,
    Portfolio_Status <> "Terminated"
    ),
    "Alias"
    ),
    ShowColumns(
    Filter(
    RD_Target_List,
    Portfolio_Status <> "Terminated"
    ),
    "Alias"
    ),
    ShowColumns(
    Filter(
    rdPlatIntInfa,
    Portfolio_Status.Value &lt;&gt; "Terminated"
    ),
    "Alias"
    )
    ),
    Collect(
    DevicePlatformList,
    ShowColumns(
    Filter(
    rdDevice,
    RequestStatus.Value = "Published" && Not(PortfolioStatus.Value="Terminated")
    ),
    "Alias"
    )
    ),
    Collect(
    PartnershipList,
    ShowColumns(
    Filter(
    rdPartnership,
    Not(PortfolioStatus.Value="Terminated")
    ),
    "Parent_Node", "Parent_Alias","Name","Alias"
    )
    )
    )

     

    Please take a try with above solution, check if the issue is solved.

     

    Best regards,

  • simms7400 Profile Picture
    829 on at
    That worked perfectly!! Thank you!!

Under review

Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.

Helpful resources

Quick Links

Forum hierarchy changes are complete!

In our never-ending quest to improve we are simplifying the forum hierarchy…

Ajay Kumar Gannamaneni – Community Spotlight

We are honored to recognize Ajay Kumar Gannamaneni as our Community Spotlight for December…

Leaderboard > Power Apps

#1
WarrenBelz Profile Picture

WarrenBelz 711 Most Valuable Professional

#2
Michael E. Gernaey Profile Picture

Michael E. Gernaey 319 Super User 2025 Season 2

#3
Power Platform 1919 Profile Picture

Power Platform 1919 268

Last 30 days Overall leaderboard