cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
emulder
Frequent Visitor

using array as input for the action 'Update Item'

Hi all,

 

I'm trying to use an array to fill in a item in the 'Update Item' action, but it is not working.

 

I'm checking if a mail has been send using a MSList column with a multiple choice with lets say 5 values,

The first thing i do in my flow is run a for each loop to fill an array with all the values that the item has for that column.

(so that i can use them in the 'Update Item' action later, so that i wont lose the value's)

for each mail loop.png

 

After that i check another column to see what actions i need to take,

(Case will be chosen depending on the column name that the item is placed on),

What i'm stuck at now is that i want to add the new choice to the column,

together with the array i made to make sure the mails that were already sent wont be sent again.

Column Switch.png

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

(names of the Case's are the names of the columns)

 

I was hoping 'v' this 'v' might work but the flow will be stuck running on the 'Update Item' action. 

Update item parameters.png

 

 

Does anybody have an idea on how i can make this work,
Feel free to ask me for more information if my explanation is vague.

Thanks for the help.

1 ACCEPTED SOLUTION

Accepted Solutions
emulder
Frequent Visitor

@Andrew_J,

My apologies for not being clear in my previous reply's,

 

I tested around with the 'Select' action and found a working solution.

At that start of the flow i initialize the variable{mailsArray} as an 'Array' (i leave the contents empty)

init mailsArray.png

After that I use a for each loop to populate the variable{mailsArray},

with each value that is already present in the column 'Mails voor Power Automate'.

for each mail loop.png

 

[flow continues inside of a Case of a switch].

 

 

after appending the new column value to the array{mailsArray},
I use the 'Select' action to separate the array this also adds the "Value: " at the start of each item which is what the action 'Update Item' needs to be a valid array. (for the right side of the 'Select' I use the expression "item()" )

if yes.png

 

After that i add the output of the 'Select' action as input for the right column of the 'Update Item' action.

(make sure to click this buttonuse array button.png, so that you can use an array as input).

Update Item value.png

the new Array from the 'Select' action looks like this:

(last value in this array was added by the 'append to mailsArray' action),

(array can be longer if the item contains more value's).

 

how select array looks.png

 

This seems to be able to dynamically populate the column so that the value's are not lost (using an array),

and than being able to add value's of you own.

Hopefully this helps others with the same issue that i had.

 

View solution in original post

8 REPLIES 8
Andrew_J
Memorable Member
Memorable Member

@emulder 

 

I think your trigger condition is when an item is updated in a sharepoint list.  The item of concern to you is if the email has been sent.  So what does that colum contain, is it simple yes or no.  I assume that this item is written to the list using a different flow.

 

If I can understand this we can work through the rest of the flow with you.

 

Regards,

 

Andrew

 

Hello @Andrew_J , thanks for the help. 

I am indeed using the trigger 'when an item is created or modified' in SharePoint, sorry for not clarifying earlier.

I'm using more than 1 column let me label them for a better clarification.

 

The column{A} is a multiple choice with each value representing a mail, all the values that were already present gets stored in the array{mailArray} at the start of the flow.

(to add them back in later, because the action 'Update Item' overwrites the value's).

 

I'm already checking if the mail was send in the switch using the 'check if not send' conditions.

The way i'm using the condition is checking if the array{mailsArray} i made at the start does not contain the value representing the mail for that Case(will send mail if it doesn't, and add the value for that mail to the array{mailsArray}).

 

Correct this flow assumes that the items are already on the board, and does not 'create' any new items, 

It does however update the item by adding the value representing the mail from the array{mailsArray}.

 

The current problem is that i don't know how to use this array of values in the 'Update Item' action,

You can see my attempt in screenshot 3, (here is the screenshot again for a better reverence).

(You can also see the name for column{A} here is 'Mails for Power Automate item').

Update item parameters.png

 

When an item moves thru the board view (looks similar to a Kanban) and an item gets moved to a specific column value the flow runs, and checks if it needs to send a mail on that step using column{A}.

 

 

English is not my native language,

hopefully you understand what i'm trying to say in my writings.

feel free to ask more questions.

@emulder,

 

Not an issue with english, i think you are from the NL or a dutch speaking region.  I know my Dutch is very limited so will not try to speak it.  If you are from the NL then I visited your country many times.  I will try and get through this for you.

 

So your orginal statement "I'm trying to use an array to fill in a item in the 'Update Item' action, but it is not working".  I might need to take this slowly to understand what you are trying to do.

 

I have read the last responce but getting back to the images in the orignal post I can see the following:

 

Andrew_J_0-1710329253840.png

 

I have done some translation and understand that "in bewerking" means "in progress" in english and also "first check" plus I assume other selection not shown.   These are the cases you talk about I assume and i assume there is a muliple choice column to select which route the flow follows.

 

Then I can see the following where you are checking if an email has been sent:

 

Andrew_J_1-1710329687606.png

If it has you do some work on an ARRAY, UPDATE ITEM and the post in TEAMS.

 

As you say you want to update the item with information in the array. I am wondering if the following would help:

 

https://powerusers.microsoft.com/t5/Building-Flows/Update-Item-gt-Keep-current-array-value/td-p/2415...

 

I do hope I am helping but I think it would be good to understand the start of the flow and the array can you share images of the list and the flow that show this.  As this may help in trying to uderstand this further.

 

Regards,

 

Andrew

emulder
Frequent Visitor

@Andrew_J ,

(i worked on a response yesterday but it did not save the draft.)

 

Here are the values of the array 'MailsArray'.

Note that this array{mailsArray} is dynamically filled, And the values of this array depend on what mails were already send for that item. (this is at the start of the flow), (i placed a 'Compose' action directly under the for each loop).

Value's of array mailsArray.pngfor each mail loop.png

 

 

I looked at the linked question i didn't directly see an answer, the 'answer' still had the same issue in my eyes.

 

After thinking for an idea I tested the 'Select' action (I want to split the values of the array, so that hopefully the array is in a readable format for the 'Update Item'),

I came closer to solving the problem but this action comes with a weird empty thing at the front of each value.

(is there a way to remove this?, it would probably solve my issue if it can).

one value of the select output.png

 

 

 

Again thanks for the help @Andrew_J ,

Hopefully this cleared your questions.

Andrew_J
Memorable Member
Memorable Member

@emulder 

 

I am still not understanding this.  I think this is all around the start of the flow and what starts it.  I am assuming the start is all working and you are getting a lot of green ticks but when it gets to the mail array this is where it does not work.

 

Looking at "in bewerking" or "in progress", and having gone and translated the rest I see this as being the status of the list item.  But without looking at the flow from the start I am unable to advise and therfore resolve.

 

I am wondering if the flow needs to be changed to a different structure to allow the input of the status in the update items.  As if it is a status type list and flow this should be off the shelf.

 

If you do send an image of the flow can you please send it in the classic view but I need to see the start and if you can share some of the list that would be great too.

 

Regards,

 

Andrew

 

 

 

 

 

emulder
Frequent Visitor

@Andrew_J,

My apologies for not being clear in my previous reply's,

 

I tested around with the 'Select' action and found a working solution.

At that start of the flow i initialize the variable{mailsArray} as an 'Array' (i leave the contents empty)

init mailsArray.png

After that I use a for each loop to populate the variable{mailsArray},

with each value that is already present in the column 'Mails voor Power Automate'.

for each mail loop.png

 

[flow continues inside of a Case of a switch].

 

 

after appending the new column value to the array{mailsArray},
I use the 'Select' action to separate the array this also adds the "Value: " at the start of each item which is what the action 'Update Item' needs to be a valid array. (for the right side of the 'Select' I use the expression "item()" )

if yes.png

 

After that i add the output of the 'Select' action as input for the right column of the 'Update Item' action.

(make sure to click this buttonuse array button.png, so that you can use an array as input).

Update Item value.png

the new Array from the 'Select' action looks like this:

(last value in this array was added by the 'append to mailsArray' action),

(array can be longer if the item contains more value's).

 

how select array looks.png

 

This seems to be able to dynamically populate the column so that the value's are not lost (using an array),

and than being able to add value's of you own.

Hopefully this helps others with the same issue that i had.

 

Andrew_J
Memorable Member
Memorable Member

@emulder 

 

I assume we are complete now?

 

Regards,

 

Andrew 

@Andrew_J 

Yes,

unless you have some question remaining for the workings of this flow,

or i missed something in my last reply.

Helpful resources

Announcements

Community will be READ ONLY July 16th, 5p PDT -July 22nd

Dear Community Members,   We'd like to let you know of an upcoming change to the community platform: starting July 16th, the platform will transition to a READ ONLY mode until July 22nd.   During this period, members will not be able to Kudo, Comment, or Reply to any posts.   On July 22nd, please be on the lookout for a message sent to the email address registered on your community profile. This email is crucial as it will contain your unique code and link to register for the new platform encompassing all of the communities.   What to Expect in the New Community: A more unified experience where all products, including Power Apps, Power Automate, Copilot Studio, and Power Pages, will be accessible from one community.Community Blogs that you can syndicate and link to for automatic updates. We appreciate your understanding and cooperation during this transition. Stay tuned for the exciting new features and a seamless community experience ahead!

Summer of Solutions | Week 4 Results | Winners will be posted on July 24th

We are excited to announce the Summer of Solutions Challenge!    This challenge is kicking off on Monday, June 17th and will run for (4) weeks.  The challenge is open to all Power Platform (Power Apps, Power Automate, Copilot Studio & Power Pages) community members. We invite you to participate in a quest to provide solutions to as many questions as you can. Answers can be provided in all the communities.    Entry Period: This Challenge will consist of four weekly Entry Periods as follows (each an “Entry Period”)   - 12:00 a.m. PT on June 17, 2024 – 11:59 p.m. PT on June 23, 2024 - 12:00 a.m. PT on June 24, 2024 – 11:59 p.m. PT on June 30, 2024 - 12:00 a.m. PT on July 1, 2024 – 11:59 p.m. PT on July 7, 2024 - 12:00 a.m. PT on July 8, 2024 – 11:59 p.m. PT on July 14, 2024   Entries will be eligible for the Entry Period in which they are received and will not carryover to subsequent weekly entry periods.  You must enter into each weekly Entry Period separately.   How to Enter: We invite you to participate in a quest to provide "Accepted Solutions" to as many questions as you can. Answers can be provided in all the communities. Users must provide a solution which can be an “Accepted Solution” in the Forums in all of the communities and there are no limits to the number of “Accepted Solutions” that a member can provide for entries in this challenge, but each entry must be substantially unique and different.    Winner Selection and Prizes: At the end of each week, we will list the top ten (10) Community users which will consist of: 5 Community Members & 5 Super Users and they will advance to the final drawing. We will post each week in the News & Announcements the top 10 Solution providers.  At the end of the challenge, we will add all of the top 10 weekly names and enter them into a random drawing.  Then we will randomly select ten (10) winners (5 Community Members & 5 Super Users) from among all eligible entrants received across all weekly Entry Periods to receive the prize listed below. If a winner declines, we will draw again at random for the next winner.  A user will only be able to win once overall. If they are drawn multiple times, another user will be drawn at random.  Individuals will be contacted before the announcement with the opportunity to claim or deny the prize.  Once all of the winners have been notified, we will post in the News & Announcements of each community with the list of winners.   Each winner will receive one (1) Pass to the Power Platform Conference in Las Vegas, Sep. 18-20, 2024 ($1800 value). NOTE: Prize is for conference attendance only and any other costs such as airfare, lodging, transportation, and food are the sole responsibility of the winner. Tickets are not transferable to any other party or to next year’s event.   ** PLEASE SEE THE ATTACHED RULES for this CHALLENGE**   Week 1 Results: Congratulations to the Week 1 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge.   Community MembersNumber SolutionsSuper UsersNumber Solutions Deenuji 9 @NathanAlvares24  17 @Anil_g  7 @ManishSolanki  13 @eetuRobo  5 @David_MA  10 @VishnuReddy1997  5 @SpongYe  9JhonatanOB19932 (tie) @Nived_Nambiar  8 @maltie  2 (tie)   @PA-Noob  2 (tie)   @LukeMcG  2 (tie)   @tgut03  2 (tie)       Week 2 Results: Congratulations to the Week 2 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge. Week 2: Community MembersSolutionsSuper UsersSolutionsPower Automate  @Deenuji  12@ManishSolanki 19 @Anil_g  10 @NathanAlvares24  17 @VishnuReddy1997  6 @Expiscornovus  10 @Tjan  5 @Nived_Nambiar  10 @eetuRobo  3 @SudeepGhatakNZ 8     Week 3 Results: Congratulations to the Week 3 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge. Week 3:Community MembersSolutionsSuper UsersSolutionsPower Automate Deenuji32ManishSolanki55VishnuReddy199724NathanAlvares2444Anil_g22SudeepGhatakNZ40eetuRobo18Nived_Nambiar28Tjan8David_MA22   Week 4 Results: Congratulations to the Week 4 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge. Week 4:Community MembersSolutionsSuper UsersSolutionsPower Automate Deenuji11FLMike31Sayan11ManishSolanki16VishnuReddy199710creativeopinion14Akshansh-Sharma3SudeepGhatakNZ7claudiovc2CFernandes5 misc2Nived_Nambiar5 Usernametwice232rzaneti5 eetuRobo2   Anil_g2   SharonS2  

Check Out | 2024 Release Wave 2 Plans for Microsoft Dynamics 365 and Microsoft Power Platform

On July 16, 2024, we published the 2024 release wave 2 plans for Microsoft Dynamics 365 and Microsoft Power Platform. These plans are a compilation of the new capabilities planned to be released between October 2024 to March 2025. This release introduces a wealth of new features designed to enhance customer understanding and improve overall user experience, showcasing our dedication to driving digital transformation for our customers and partners.    The upcoming wave is centered around utilizing advanced AI and Microsoft Copilot technologies to enhance user productivity and streamline operations across diverse business applications. These enhancements include intelligent automation, AI-powered insights, and immersive user experiences that are designed to break down barriers between data, insights, and individuals. Watch a summary of the release highlights.    Discover the latest features that empower organizations to operate more efficiently and adaptively. From AI-driven sales insights and customer service enhancements to predictive analytics in supply chain management and autonomous financial processes, the new capabilities enable businesses to proactively address challenges and capitalize on opportunities.    

Updates to Transitions in the Power Platform Communities

We're embarking on a journey to enhance your experience by transitioning to a new community platform. Our team has been diligently working to create a fresh community site, leveraging the very Dynamics 365 and Power Platform tools our community advocates for.  We started this journey with transitioning Copilot Studio forums and blogs in June. The move marks the beginning of a new chapter, and we're eager for you to be a part of it. The rest of the Power Platform product sites will be moving over this summer.   Stay tuned for more updates as we get closer to the launch. We can't wait to welcome you to our new community space, designed with you in mind. Let's connect, learn, and grow together.   Here's to new beginnings and endless possibilities!   If you have any questions, observations or concerns throughout this process please go to https://aka.ms/PPCommSupport.   To stay up to date on the latest details of this migration and other important Community updates subscribe to our News and Announcements forums: Copilot Studio, Power Apps, Power Automate, Power Pages

Users online (784)