Hello,
I am new to Power Automate and am using the desktop version, which is free. The ultimate goal of my flow is to take a PDF invoice and create an Excel file that maps all the invoice data. As of now, I've created the flow that takes a PDF as input, parses it into a text variable, and uses regex and some for each loops to map all the necessary data to the Excel file.
This flow has some downsides for me, which I'd like to discuss to see if there's an alternative approach.
2) Another issue I have is that when I start the flow, it opens the Excel file and shows me the entire mapping process until it finishes. Is there a way to run it in the background without visually seeing the entire process? If not, I am forced to continue in this manner. Please share your thoughts;
2.1) A problem I encountered following the mentioned procedure is: if the file is already open, it returns an error. The solution I found online is to terminate the Excel process in advance, before opening it. However, this isn't ideal either, because if other Excel files are already open on the PC, it closes all the files. Is there a way to close only the file that will be used for mapping? If there isn't any solution for this, the only thing that comes to my mind is to start the flow in a virtual machine designed solely for this purpose and not interact with the daily work of the user who is using the PC for other things. Here too, I am open to any suggestions.
3) If the first point is not achievable, another solution I found online is to use the email client (Outlook). In my case, I am receiving the PDFs that I need to map in Excel by email. So, what I could do is read the emails from the specified sender and download the attachment, which will then be processed in the flow I've already created. Here immediately arises a question: I do not want to start the flow for each new email that arrives. I want the flow to remain listening, and when a new email arrives and matches the specified rules, to generate the Excel file I need.
Solved! Go to Solution.
Hi @Ronyn77 I hope you are doing well.
Here are my answers to your questions:
Here is the snipped code of some of the actions that you need to enhance your robot.
Excel.LaunchExcel.LaunchAndOpenUnderExistingProcess Path: $'''Your Excel File Path''' Visible: False ReadOnly: False Instance=> ExcelInstance
Folder.GetFiles Folder: $'''Your Folder Path''' FileFilter: $'''*''' IncludeSubfolders: False FailOnAccessDenied: True SortBy1: Folder.SortBy.NoSort SortDescending1: False SortBy2: Folder.SortBy.NoSort SortDescending2: False SortBy3: Folder.SortBy.NoSort SortDescending3: False Files=> Files
LOOP FOREACH CurrentItem IN Files
# Here goes the actions that fill out the Excel File
END
Please let me know if it works, happy automation!,
If I have addressed your inquiry successfully, kindly consider marking my response as the preferred solution. If you found my assistance helpful, a 'Thumbs Up' would be greatly appreciated.
Additionally, I offer specialized consultancy and development services leveraging PAD. If you're interested in exploring these services further, feel free to DM me, and we can initiate a discussion.
Kind regards,
Will SG
Managing Director & Automation Lead
RAMS CR (Recruitment & Automation)
Some people just have flows running in the background all the time. If it's not using your mouse and keyboard, it doesn't affect you, and you don't affect it.
Loop while 1=1 (a loop that will run continuously until you manually turn it off)
'your flow
'wait 1 hour (with a wait, instead of this loop running repeatedly (every second), we reduce the number of times it runs in a day)
End (loop)
But we can only have one of these running at a time. It's a work around when you don't have connectors to trigger a flow.
Good luck!
@Ronyn77 _
Create a cloud flow and set the trigger point as either receiving an email in Outlook or uploading a file in SharePoint.
Extract the PDF file from Outlook and pass or pass the SharePoint file to Power Automate AI Builder.
AI Builder will extract all the relevant details from your PDF and convert them into an Excel format. However, you may need to implement some workarounds to make it work seamlessly.
Please refer this - https://youtu.be/PD2eKTzkZ70?feature=shared
Hope this helps.
Thanks,
Deenu
I was asking how to do it using the desktop version, not the cloud one. Is it possible, or not? Just in case I would follow your suggestion to use the cloud version, could I use it for free, or am I required to subscribe?
Hi @Ronyn77 I hope you are doing well.
Here are my answers to your questions:
Here is the snipped code of some of the actions that you need to enhance your robot.
Excel.LaunchExcel.LaunchAndOpenUnderExistingProcess Path: $'''Your Excel File Path''' Visible: False ReadOnly: False Instance=> ExcelInstance
Folder.GetFiles Folder: $'''Your Folder Path''' FileFilter: $'''*''' IncludeSubfolders: False FailOnAccessDenied: True SortBy1: Folder.SortBy.NoSort SortDescending1: False SortBy2: Folder.SortBy.NoSort SortDescending2: False SortBy3: Folder.SortBy.NoSort SortDescending3: False Files=> Files
LOOP FOREACH CurrentItem IN Files
# Here goes the actions that fill out the Excel File
END
Please let me know if it works, happy automation!,
If I have addressed your inquiry successfully, kindly consider marking my response as the preferred solution. If you found my assistance helpful, a 'Thumbs Up' would be greatly appreciated.
Additionally, I offer specialized consultancy and development services leveraging PAD. If you're interested in exploring these services further, feel free to DM me, and we can initiate a discussion.
Kind regards,
Will SG
Managing Director & Automation Lead
RAMS CR (Recruitment & Automation)
The listening part is the premium license. You have to use a cloud flow to listen to your email, and you can trigger a desktop flow from there. If you don’t want to use PAD on your local workstation (hijacking your mouse and keyboard), then you will need to designate either another computer (that’s not being used) or a VM, which would be an additional charge.
to my understanding, the listening (connector) license is only $15/month. The VMs are more.
as for the flow itself, it sounds like we could “get window data” on any open excel files that matches a specific name, and then close just that excel window, not terminate all excel processes.
would it be viable to run this once a day? This may open up options to you where we simply build Outlook rules to house these emails in a folder, and run the flow once per day to loop through each email and do everything, and then you can just run it as often as you need to (ex. Once a day). This would be free with your current license and not require cloud or premium connector license.
good luck!
Hello @WillSG,
Thank you for the suggestions.
Regarding point 1), I followed your advice. The loop iterates through all the PDFs found in the folder after initiating the flow, which works fine, but I'm looking to improve it if possible. Is there a way to set the automation to listen mode, so it starts mapping from PDF to Excel as soon as a new PDF is added to the folder?
2) I set the Excel instance to be invisible as you suggested. However, it briefly pops up on the screen before disappearing again, then it operates in the background. It's better than before but still not ideal.
Lastly, I looked at the "code" you mentioned at the end, only after completing the PAD flow, because initially, I thought I had to incorporate your code somewhere in PAD. Upon closer inspection, it appears to be the code for the automation. Did you write it manually, or is it exported from somewhere?
Hello @MichaelAnnis ,
I would prefer to avoid the premium license. As of now, I only need to map the invoices for a single supplier. Obtaining a license would make sense if I had to process a large volume of invoices from multiple suppliers, saving time on individual mappings since using regex to do it properly is time-consuming.
Having a Virtual Machine is not an issue; there are many free VM options available, and I already have an infrastructure with a server that utilizes Windows virtual machines on Windows Server, so there won't be any additional costs.
I've never used the get window data function and I'm not sure if I'll need to use it more frequently. I've modified the flow, and now, when it opens a new Excel file to write the data, I save it with a unique name based on the invoice number, which will likely solve the problem.
Regarding starting the flow once a day, it's a great idea. I've checked the emails containing these PDF invoices; in most cases, they are sent at the same time, but unfortunately, there are exceptions.
However, how can I automatically start the flow once per day?
I found solutions on the net using Windows Scheduler, but I was wondering if there's an easier way to do it.
Sounds like you got most of it worked out, so that’s good.
windows scheduler is what I’ve seen most talked about here when they aren’t initiating from cloud flows, but I think even that requires the premium license.
if you have a VM doing no other desktop flows, you could set it up on a loop to constantly run with a one hour wait between each loop, but that’s just a work around. At the point, I’d personally just run it once a day.
Some people just have flows running in the background all the time. If it's not using your mouse and keyboard, it doesn't affect you, and you don't affect it.
Loop while 1=1 (a loop that will run continuously until you manually turn it off)
'your flow
'wait 1 hour (with a wait, instead of this loop running repeatedly (every second), we reduce the number of times it runs in a day)
End (loop)
But we can only have one of these running at a time. It's a work around when you don't have connectors to trigger a flow.
Good luck!
Thank you very much. Last question : if I want to run the flow one time per day at 6.00 a.m., what should I do?
If you want it to run once a day at a specific time, you have the following options:
Hello @Agnius,
If you've read my post, you'll understand that I'm not seeking a "premium" solution. Instead, I'm exploring workarounds that would allow me to automatically trigger the flow based on an event, after the flow has already been started manually. Following the previous suggestions, probably the best approach is to create an infinite loop and insert a condition within it that will trigger the subflow. I'm uncertain if I could utilize the "wait for text on screen" (OCR) feature and capture the time windows.
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 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
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