Hi everyone,
I was working on a requirement wherein I had to upload files (file type can pdf,jpg, txt,etc and it can be more than 1) using Power Apps. So for that I created a Document library in my SharePoint site (named: DEMO_PowerApps) and the document library is named ('IZ'). In this Document library I have created few sub-folders like the following:
To upload files in the Document library I am using Power Automate Flow which is as follows:
So here basically I have created an Instant cloud flow and created a condition (which always evaluates to false) and have used the SendEmail activity in which I am defining the attachments (like name of File, Folder path, content) have used Dynamoic Expression : Ask in Power Apps (for the Yes Part) and then I am using the same defined parameters in Creating a SP file in the Document library.
Now one is issue is when I am uploading the file in the Folders I am able to only see till Level-1 folders like in my Document Library (Intelizign) there are the following levels:
Main Level:
Folders: PLM, Software Services
(In Software Services: Mendix , Polarion). So currently the drop-down is only showing till Main level the other nested folders are not displayed and the second thing is there are duplicates:
So the flow is working fine (like I selected Intelizign/PLM) and uploaded a file pdf it gets uploaded properly in that file location.
So my final expectation is like this:
In the main drop down it will list all the folders at the very first level (here it will be PLM, Software services). Based on the selection made in drop down 1 (Suppose users selects PLM) then only the respective file or sub-folders should be shown (like in PLM there is only one sub-folder so it only show that folder in the second drop-down).
For Type: Drop down there will some choices that will be shown user can select one or more and that should be associated with all the attachments.
2. Associating Types with all the attachments
Now my upload screen looks:
I want to add another column in the document library named: Type which is a choice column (which will have certain choices) and the choices will be dependent based on the Destination choice selected.
Example:
Assume we have following choices: security, implementation, data-consume, certification, api.
So if user selects PLM then only show: implementation, data-consume, certification.
For Software Services: security, implementation, api.
And then after clicking on Upload the selection (type) should also get associated with the uploaded file, if user has uploaded 3 files and has chosen Type: security,implementation should get that value associated with it (multi-selection).
Do let me know on how to proceed further, hoping for some help for this topic.
Regards,
Sidhant.
Hi @Sidhant_02 ,
1. To get all level 1 folders, you can use the below function in the Items property of the dropdown:
Filter(IZ, CountRows(Split('Folder path',"/"))=3 && IsFolder)
For the second dropdown, you can then use:
Filter(IZ, StartsWith('Folder path', DropDown1.Selected.'Folder path') && IsFolder)
It is worth noting that neither of these are delegable because system columns are used.
2. In case you want to limit choices, you will have to define somewhere which choices are allowed per Destination selection. This can be hardcoded in the app, but also in a separate data source, for instance in the Items property of the Type Drop Down:
Filter(
Choices(
IZ.Type
),
Value in Switch(
DestionationDropDown.Selected.'Folder path',
"Intellizign/PLM/", ["implementation", "data-consume", "certification", "api"],
"Intellizign/Software Services/", ["implementation", "data-consume", "certification"]
)
)
Again this is not delegable.
To be honest I would advise against the use of folders because of the delegation issues.
Hi @BCBuizer ,
Thanks for the quick response, so in my flow it is saving the attachments/uploads in the level-1 (which is inside the root sub-folders) after making the modifications will my Flow will still be able to store at the destination as per the selection in the drop-downs. Are there any modifications required?
You also have mentioned that using folders (system folders) is not delegable so is there any better option that can satisfy my requirements. Because the thing is currently to upload any file (of a specific category/service) I am creating a folder then a sub-folder if it has a specific type (like Low Code -> Power Platform -> File 1, File 2). So the uploading of file to a specific that I want to be done by using Power Apps so the end user can directly upload the files in the specified destination and then implement search (by adding a Tag/Type) through which filtering is done easily instead of manually looking into each folder.
Regards,
Sidhant.
Also do you have any other method through which the expression can be delegable which follows some structure similar to the folders, in the end what I want is to implement a storage space in SharePoint where users can upload their files in particular to which is relevant to.
Hi @BCBuizer ,
Currently what I have done is I have created another screen (Screen 3) and a new Document Library named Contracts with some additional meta-data (tags to associate with file Contract Date and Contract Type)
And created a new flow to upload files to the SharePoint Document library with the some extra information (meta info) for which I have created 2 new variables (ContractDate and ContractType). Here I am not observing any warnings, so were you mentioning something like this and how can this be used as per my main requirement.
Also the other I noted is the expression for the second drop-down is showing blank value (the count is correct but there are no values)
Also now on the upload button if the files need to uploaded in the mentioned path (selected in the two drop-downs) what changes need to be made to my old flow:
Regards,
Sidhant.
Hi @Sidhant_02 ,
Instead of using folders, I would use categories and sub categories. Both of them can be implemented as a choice type column in SharePoint and can be made delegable.
As for your last question, I suggest you use the PowerApps V2 trigger instead of the one you are using in your flow. This trigger will allow you to easier configure the arguments you wish to receive from PowerApps. When combined with the suggest (sub) category fields, you can simply pass the selected categories as an argument from Power App to be used to populate the corresponding columns using Power Automate.
Hi @BCBuizer ,
Which flow you were referring to?.
If possible could you illustrate with an example (as per the information/screenshots provided earlier) when you have some time (and why are the values not being populated in the 2nd drop down) that will help.
Regards,
Sidhant.
Hi @BCBuizer ,
I have created another copy of my flow:
As I said the file is getting uploaded in the main Level but the tags are not getting associated with it, I have added 4 arguments but even after selecting it, that is not reflected in the SP document library.
Update:
I am able to add the tag value added another action in the (No flow) where in I am taking the value by asking in power apps and in the flow have added another parameter which is the Tag drop down, like:
But this Flow is quite complicated (in my opinion), so do you have any other option for it. And one more thing that I have observed the number of parameters keeps increasing when we choose 'Ask in Power Apps' (as Dynamic expression) even after removing that parameter from the flow it is still there as option in Dynamic expression in Flow, which is the reason I had to add another dummy value "xyz" to satisfy the parameters expected.
Regards,
Sidhant.
Hi @Sidhant_02 ,
There are alternatives to using Power Auomate, but I think those are more complex to set up, for instance: https://www.youtube.com/watch?v=n3mhe88BI34
To add the tags to the file in the flow, use the "Update file properties" action after the "Create file" action.
Using the "PowerApps (V2)" trigger instead of the regular "PowerApps" trigger will take care of the issue you mentioned where the amount of parameters grows.
Hi @BCBuizer ,
So you are suggesting to go for two choice columns (as Category and Sub-category) to make it delegable.
So suppose if we have to implement the tree like structure with the help of drop-downs can we make that delegable?.
Example: Main root: Services -> it's sub-folders have 2 types Power Automate and Power BI -> So if use categories choice column how will we associate it with respective types. Currently assume we have 2 levels but later on the level increases how to manage them.
I was thinking of using the drop-downs for each level like the cascading drop-down structure i.e. based on the selection in previous drop-down - current drop-down values are altered
Like: Main Level -> Level 1 -> Then all the folders/categories in the selected level should be shown.
So need some help for this.
Also for level-1 the formula that you provided is displaying the count, but values are coming as blank.
Regards,
Sidhant
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!
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 in the Forums 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 of SolutionsSuper UsersNumber of Solutions @anandm08 23 @WarrenBelz 31 @DBO_DV 10 @Amik 19 AmínAA 6 @mmbr1606 12 @rzuber 4 @happyume 7 @Giraldoj 3@ANB 6 (tie) @SpongYe 6 (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. Community MembersSolutionsSuper UsersSolutions @anandm08 10@WarrenBelz 25 @DBO_DV 6@mmbr1606 14 @AmínAA 4 @Amik 12 @royg 3 @ANB 10 @AllanDeCastro 2 @SunilPashikanti 5 @Michaelfp 2 @FLMike 5 @eduardo_izzo 2 Meekou 2 @rzuber 2 @Velegandla 2 @PowerPlatform-P 2 @Micaiah 2 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 Apps anandm0861WarrenBelz86DBO_DV25Amik66Michaelfp13mmbr160647Giraldoj13FLMike31AmínAA13SpongYe27 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 Apps DBO-DV21WarranBelz26Giraldoj7mmbr160618Muzammmil_0695067Amik14samfawzi_acml6FLMike12tzuber6ANB8 SunilPashikanti8
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.
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