cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
Anonymous
Not applicable

Flow - auto increment a certain column of an added row

Hi!

 

I am building a more complex flow in which everytime a form is submitted, a new excel row is generated. What I'm struggling with is that I want the first cell of the row to be an auto number (the previous row value +1).

 

I've looked for solutions online, I tried declaring a variable and then increment it by one, but it's the same problem, I din't know how to declare a variable starting value, so I'm getting the same number every time. Any ideas? Is there an expression which would yield the value of the previous row, same column + 1?

 

Thanks!

 

Screenshot.png

1 ACCEPTED SOLUTION

Accepted Solutions
ccc333ab
Solution Sage
Solution Sage

Here is an approach: 

 

1. Get the rows from your excel first, so you can find out the ID's that have been used. In my excel file I have a column called DisciplineID which is a counter like yours. I also order by DisciplineID in case your ID's are out of order. 

ccc333ab_0-1625841938783.png

2. I then use a LAST statement to get the very last row of this spreadsheet. 

ccc333ab_1-1625842026614.png

3. And then I add 1 to the column called DisciplineID that outputs from my compose statement. 

ccc333ab_2-1625842076009.png

 

Now you can just use the output of this compose statement for adding in the new ID in your "Add a row into a table" action. 

 

 

View solution in original post

18 REPLIES 18
ccc333ab
Solution Sage
Solution Sage

Here is an approach: 

 

1. Get the rows from your excel first, so you can find out the ID's that have been used. In my excel file I have a column called DisciplineID which is a counter like yours. I also order by DisciplineID in case your ID's are out of order. 

ccc333ab_0-1625841938783.png

2. I then use a LAST statement to get the very last row of this spreadsheet. 

ccc333ab_1-1625842026614.png

3. And then I add 1 to the column called DisciplineID that outputs from my compose statement. 

ccc333ab_2-1625842076009.png

 

Now you can just use the output of this compose statement for adding in the new ID in your "Add a row into a table" action. 

 

 

Anonymous
Not applicable

Hey! Thank you so much for your kind response, it worked perfectly, not only that, but I also managed to extract the id and append it to the linked file name, which is extremely helpful to my company 🙂

 

Cheers!

How can I adapt this in order to Update a row with consecutive ID's for rows that don't have them ?

ccc333ab
Solution Sage
Solution Sage

Not 100% sure what you are asking. 

 

Do you have an existing spreadsheet with a blank column and you want to have an ID added to it? Or does the existing spreadsheet have a column that has SOME IDs in it and you want to fill in the missing IDs? 

Trabajanus
Regular Visitor

I do have a spreadsheet , that contains ID's already , and a flow that will continue to fill in information from another table but without the ID, what I want is to fill in the ID for the rows that get added  if that is possible 

ccc333ab
Solution Sage
Solution Sage

Try this. Here are my two tables. 

Table 1: FamilyWithID   

ccc333ab_0-1643135225014.png

 

Table 2: FamilyToAdd (doesn't have IDs)

ccc333ab_1-1643135340498.png

 

The flow would be: 

1. List the rows in the table that has your IDs in it. Make sure you "ORDER BY" to ensure your IDs are in order as the code relies on that. (My ID field is called TestID).

ccc333ab_8-1643136622896.png

 

2. Then get the last row of your table with IDs. 

ccc333ab_9-1643136681086.png

 

3. Now initialize a variable with the last ID used. 

ccc333ab_10-1643136712669.png

 

4. Now list the rows present in your table without the IDs

ccc333ab_4-1643135857285.png

4. Now you'll want to loop through each row you want to add. 

ccc333ab_5-1643135927655.png

 

5. Increment your variable to the next ID number

ccc333ab_6-1643135974151.png

6. And then add your data into the original spreadsheet, using the variable as the ID.

ccc333ab_7-1643136075924.png

Now, this assumes you clear out the spreadsheet without IDs for every run. If you don't you'll need to put some checking in there to determine if the row has been added before or not. 

Final Result: 

ccc333ab_11-1643136910671.png

 

Trabajanus
Regular Visitor

Thank you very much , that helped 

I tried coping these steps to my flow and I am getting an "Invalid Template" error message on the second function (compose add one to get new id)

 

Error MessageError Message

 

FunctionFunction

 

Does anyone have any tips for fixing this? Thanks

Guessing as you didn't actually show your initial COMPOSE action (the one that you set your MOC value in), but I believe your equation should be:

 

add(int(outputs('Compose')),1)

Okay, I tried that and it didn't work. Here's my whole flow:

 

martii20_1-1693245911484.png   martii20_2-1693245915638.png

 

I am trying to accomplish the same thing as the original post - when a new response is submitted, response details are collected in an Excel file and assigned an "MOC ID," which is just +1 from the previous row. 

 

 

 

 

 

 

OK. The expression looks correct.

 

On your run, can you show me a snippet of what the results for the first Compose statement is? 

First Compose Statement:

last(outputs('List_rows_present_in_a_table')?['body/value'])
 

Input: 

{
  "@odata.etag""",
  "ItemInternalId""15a8cdb5-e54f-4f1f-a8a2-6956478ee279",
  "MOC ID""1",
  "Timestamp""45161",
  "Submitter Email""EMAIL",
  "Project Description""test",
  "MOC Process""Line/Plant Transfer",
  "Affected Plants"""
}
 
Output:
{
  "@odata.etag""",
  "ItemInternalId""15a8cdb5-e54f-4f1f-a8a2-6956478ee279",
  "MOC ID""1",
  "Timestamp""45161",
  "Submitter Email""EMAIL",
  "Project Description""test",
  "MOC Process""Line/Plant Transfer",
  "Affected Plants"""
}
ccc333ab
Solution Sage
Solution Sage

Looks like your spreadsheet has the MOC column named with a space. Your expression uses an underscore. 

 

So you would need to ensure the fields match. 

I updated the column/equation to match and the flow "succeeded" this time, but the ID column did not populate with a new number. I'm getting the "Invalid Template" error again:

 

martii20_0-1693249051811.png

 

A little baffled by the fact the flow succeeded, yet you are getting an error...

 

Anyway, can you again send me the results of the request before this step, and the expression used in this step? 

I should've clarified - the flow "succeeded" but the "ID" cell did not populate with the +1 value.

I then tried editing the flow again to fix it and that's when the error occurred.

 

martii20_0-1693317439630.png    martii20_1-1693317646260.png

ccc333ab
Solution Sage
Solution Sage

OK. 

 

Can you get it back to where the flow was successful again. In the second compose, go back to your original statement of 
   add(int(outputs('Compose')?[MOC???],1)  
         Note: I put in MOC??? as I don't know what your Excel file has in it anymore. Make sure it matches.

 

Then to troubleshoot the fact your excel file isn't increasing send me (or you can just check) the following: 

  • Make sure your Compose2 is returning the MOCID value +1 that you are looking for 
  • In your Add a row into a table action, the expression for MOCID is using Outputs('Compose_2')

 

It's working! I can't say I'm sure what changed exactly between this attempt and the last one, but rewriting the compose statements seemed to do the trick.

 

This is a copy of my flow, in case it helps anyone else:

 

martii20_0-1693320994456.png

 

Thanks @ccc333ab!

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 (658)