cancel
Showing results for 
Search instead for 
Did you mean: 
Reply

RE: Bulk Upload into SP list - Ignore empty cells and upload only the excel columns which have values into SharePoint List

Hi Folks,

 

Need your help once again. currently, I am creating a flow - bulk excel upload to Primary SP list. I have 'N' no.of.Columns.in my excel file where user will update the columns based on his preference. Most of these columns are date columns along with text fields in SharePoint backend.

 

Current flow setup:

 

KeerthiRaj96_0-1634747703454.png

 

Apply to each (expanded view):

KeerthiRaj96_1-1634747765132.png

I got stuck in this place, tried if condition for an particular date column in excel:

 

KeerthiRaj96_2-1634747912409.png

 

 

 

What I need is:

to make my flow to identify whether my cell have any blank value in my excel file. If yes, then move to next cell and upload only those columns with values into SP list. If No, upload/Update into SP list.

 

Please help out with your suggestions.

 

14 REPLIES 14

Hi @ekarim2020 ,

 

I am sorry to disturb you again. I need your dearest help once again. 

 

Kindly look into this post and share your comments and suggestions.

 

Thanks in advance!!!

To get a properly formatted date from Excel check that you have selected the following option as shown in the image below:

ekarim2020_0-1635007480856.png

See also:  Working with Date & Time data of Excel in Power Automate (bythedevs.com)

 


Ellis
____________________________________
If I have answered your question, please mark the post as Solved.
If you like my response, please give it a Thumbs Up.

Hi @ekarim2020 ,

 

Thanks for your reply.  The date format which you have mentioned above was already used in my flow. If my excel file have values for all the 80 columns it runs success, if any one column does not have value and left blank it fails.

 

Hope you could be able to understand the query which i have mentioned in this post:

 

Main Goal: If any blank columns in excel file exists, my flow should be able to skip those cells and upload only the columns which have values into SP list.

 

Please provide some suggestions for this query.

 

Thanks in advance!

I'm not sure I understand fully the outcome you are looking for. Perhaps the following examples may help.

Based on the following Excel file:

2021-10-24_14-38-03.png

 

(1) You could use the filter array function to select only those rows that do not contain any empty cells:

2021-10-24_14-37-42.png

ekarim2020_1-1635083612815.png

This is the expression for the filter array:

ekarim2020_0-1635082986215.png

 

 

@And(not(empty(item()?['Group Name'])), not(empty(item()?['Title'])), not(empty(item()?['Team Lead'])), not(empty(item()?['Manager Name'])), not(empty(item()?['Status'])))

 

 

Thus rows with null values will be ignored.

 

(2) Another possible option is to replace empty values with another value using a Select action. The example below replaces empty Status values with 'no status':

2021-10-24_14-47-44.png

2021-10-24_14-54-00.png

 

Hope this helps.


Ellis
____________________________________
If I have answered your question, please mark the post as Solved.
If you like my response, please give it a Thumbs Up.

 

Hi @ekarim2020 ,

 

Thanks for your kind response. I have tried out using the first method filter array and observed below points:

 

  1. Flow works fine with any error , but it is ignoring the whole row instead of those particular cells . As per my query, in an excel row have blank cells, only those blank cells needs to be ignored (not whole row) and remaining cells with values needs to be created/updated  into SP list.
  2. I have one doubt in first method -> filter array, you have used body('Filter Array')  in Apply to each 2 loop action for create items  action. What should be used for Update item  -> Apply to each loop action?

Reference to my  query:

 

KeerthiRaj96_0-1635086673939.png

 

Also, why the row id is not included in the filter array expression - is it automatic sequential numbering in excel?

 

 

Please clarify it for both the methods which you have mentioned above as solution.

 

This is just a simpler example I am demonstrating - so it may be missing some of the specific details for your flow.

The rowID is something I added manually and is a unique identifier of the row.. The rowID is also saved to the SharePoint list and can be used to update the SharePoint list items - and you may already be using this or something similar. So, for your update action you will need to match RowID from the Excel data (via using filter or  select action) with the SharePoint list item

 

Choose one of the methods that matches your needs.

 

The filter array action will only return row 2:

ekarim2020_0-1635090563126.png

 

The Select returns the following data, with the Status updated to 'no status' of the status field is empty:

ekarim2020_1-1635090731207.png

 


Ellis
____________________________________
If I have answered your question, please mark the post as Solved.
If you like my response, please give it a Thumbs Up.

 

Hi @ekarim2020 ,

 

Thanks for your reply. I have tried out first method - Filter array - this doesn't suit for my requirements ( this method completely ignore the row if it have blank cells). So, i have used expression as stated below and map the expression to each individual columns in create/update action and flow works fine.

Example:  

column region -> mapped to Compose and i have called that output in create item action.

KeerthiRaj96_1-1635183493234.png

 

Expression:
if(empty(outputs('Region')),null, outputs('Region'))
KeerthiRaj96_0-1635183441983.png

 

 
Need help on People Picker Columns and with Email ID columns:
 
When i used the same above expression for people picker columns, my flow fails with message -  update item action item failed.
 
My people picker column in flow was set up based on the solution which you provided earlier (Multiple Email id's while uploading excel into SharePoint list query)
 
 
What i need is, if people picker column have values in excel file, then upload into SP list, if blank cell do nothing (ignore it).
 
kindly suggest some ideas for the same.

If I have understood the current issue correctly:

In the Excel row, if the column for Team Lead is empty or null, then the corresponding SharePoint column Team Lead needs to be set to null. If the Team Lead is not empty or null, then populate the SharePoint Team Lead people column

2021-10-25_22-54-19.png

Example: in RowID 6, the SharePoint Team Lead column is set to empty or null:

2021-10-25_22-58-20.png

Is this correct?

 

Ellis

Hi @ekarim2020 ,

 

Yes you are correct, if team lead cell is empty in excel list. it should be empty. If manager cell is empty in excel, it should updated as empty in SP list.

 

Please suggest an idea.

I will have a look at the issue in more detail later, but the flow will have a logic roughly like this:

 

Power Automate Team Manager2.drawio.png

Ellis

Hi @ekarim2020 ,

 

i will try the rough logic which you shared. But got confused, where to place these conditions (since i have so many apply to each and other actions in my flow)

 

Kindly share the same logic using flow if possible, which will give clear idea for implementing the same.

Here is the overview of the entire flow. It is much the same as before, but with actions to handle empty Team and Manager columns. I've also added some Scope blocks to make the flow easier to follow

2021-10-26_17-23-52.png

This is the first section:

2021-10-26_17-05-47.png

Initialize two new variables to store the Team and Manager columns - whether empty or they contain data - the variables will be used to create a new SharePoint item or to Update a SharePoint item:

2021-10-26_17-30-08.png

This section will handle the Team column (in Scope Team) and Manager column (in Scope Managers):

2021-10-26_17-06-59.png

Reset variables at the start of each loop, set varManagers and varTeams to empty:

2021-10-26_17-08-10.png

Now the actions for the Team and Managers are done in parallel - it just makes it clearer what the flow is doing.

2021-10-26_17-09-41.png

We will start with the Team column. The condition expression checks it Team column is empty:

empty(items('Apply_to_each')?['Team Lead'])

2021-10-26_17-10-09.png

If the Team column is not empty, we process the data (email addresses) in this column just like before (multi-person people picker):

2021-10-26_17-11-52.png

We set the Team Display names as before:

2021-10-26_17-14-18.png

The Team section is completed:

2021-10-26_17-18-48.png

 

Next post: Managers Column

We will continue onto the Managers column.

2021-10-26_17-46-49.png

This is the Scope Managers action:

2021-10-26_17-20-36.png

 

The condition expression checks if the Managers column is empty:

empty(items('Apply_to_each')?['Manager Name'])

2021-10-26_17-51-58.png

If the Managers column is not empty, we process its content as before:

2021-10-26_17-53-11.png

We have handles both empty Teams or Manager columns. There is no easy way to do this other than checking each Excel row, and examining the contents: empty or has data

2021-10-26_17-58-05.png

Next post: SharePoint Create Item, Update Item

2021-10-26_17-21-49.png

2021-10-26_18-02-15.png

2021-10-26_18-05-07.png

High-level flow:

2021-10-26_18-07-05.png

Run time:

2021-10-26_18-16-53.png

That's enough for me. I need a long rest!

 

Ellis

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 (1,230)