cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
drmrbrewer
Helper I
Helper I

Error handling without creating parallel branch

My flow is currently as follows:

 

image001.png

 

I am catching an error in the "get metadata" step (can't find file) using a "Configure run after", and if there is an error all I'm doing at  the moment is terminating with "cancelled" status.

 

This works fine, but it irritates me from a layout point of view that I've doubled the width of my flow just to create a single "terminate" step.

 

What I would prefer is a way to wrap the "get metadata" step in a try/catch type block, so the error handling sits "in line" with the rest of the flow... after all, I'm only terminating on error, nothing fancy.

 

Is this possible?

 

And yes, I know that my parallel branch isn't strictly necessary in this context because the flow will terminate anyway, but I'd rather it terminates with "cancelled" than "failed" here, because it is expected that this file won't be present in many cases... so it's not a failure as such.

 

Perhaps it would be better to handle this with a condition on the trigger, so that the flow doesn't run at all in those circumstances.  But I'm not sure if it's possible for a condition to check for the existance of a file?  And anyway I'm still interested to know whether a try/catch approach is possible.

1 ACCEPTED SOLUTION

Accepted Solutions
Nived_Nambiar
Super User
Super User

Hi @drmrbrewer 

 

First let's discuss a basic try catch- final block how it can be created in the power automate flow 

 

 

See below

 

Nived_Nambiar_0-1695559122413.png

 

First step is to create a variable which stores whether error occured or not, it would be a boolean variable , so initially we would assign it as true (as seen in above screenshot)

 

Next for the purposes of showing how should Try catch final block should be designed, i am demonstrating with scope actions where we can group multiple actions together, you can even go for single action for try section and scope for catch and final section (as per your wish !)

 

Try Scope

 

Place the actions you need to run in try scope

Nived_Nambiar_1-1695559336082.png

 

 

Catch Scope

 

Catch scope captures all exceptions when try scope fails 

Configure run after should be set as 

Nived_Nambiar_2-1695559379916.png

 

It should run when try scope is failed/timed out.

 

 

Final Scope

Final scope should run even everything is success or any failure so best point where you can terminate your flow would be here.

Configure Run after should be set as 

Nived_Nambiar_3-1695559517024.png

 

Nived_Nambiar_4-1695559532599.png

 

 

Hope this helps !

 

Also regarding the trigger to check for existence of file, i see you are triggering the flow when the file is created , i assume you are trying to fetch the proeprties of same file, if yes it should not throw error right?

Also the action you are using Get File Metadata using path instead of that try to use get file metadata and pass the ID dynamic content which you got as output from the trigger in File Identifier field.

Nived_Nambiar_5-1695559722431.png

 

 

Thanks & Regards,

Nived N 🚀

LinkedIn: Nived N's LinkedIn
YouTube: Nived N's YouTube Channel

🔍 Found my answer helpful? Please consider marking it as the solution!
Your appreciation keeps me motivated. Thank you! 🙌

View solution in original post

10 REPLIES 10
Nived_Nambiar
Super User
Super User

Hi @drmrbrewer 

 

First let's discuss a basic try catch- final block how it can be created in the power automate flow 

 

 

See below

 

Nived_Nambiar_0-1695559122413.png

 

First step is to create a variable which stores whether error occured or not, it would be a boolean variable , so initially we would assign it as true (as seen in above screenshot)

 

Next for the purposes of showing how should Try catch final block should be designed, i am demonstrating with scope actions where we can group multiple actions together, you can even go for single action for try section and scope for catch and final section (as per your wish !)

 

Try Scope

 

Place the actions you need to run in try scope

Nived_Nambiar_1-1695559336082.png

 

 

Catch Scope

 

Catch scope captures all exceptions when try scope fails 

Configure run after should be set as 

Nived_Nambiar_2-1695559379916.png

 

It should run when try scope is failed/timed out.

 

 

Final Scope

Final scope should run even everything is success or any failure so best point where you can terminate your flow would be here.

Configure Run after should be set as 

Nived_Nambiar_3-1695559517024.png

 

Nived_Nambiar_4-1695559532599.png

 

 

Hope this helps !

 

Also regarding the trigger to check for existence of file, i see you are triggering the flow when the file is created , i assume you are trying to fetch the proeprties of same file, if yes it should not throw error right?

Also the action you are using Get File Metadata using path instead of that try to use get file metadata and pass the ID dynamic content which you got as output from the trigger in File Identifier field.

Nived_Nambiar_5-1695559722431.png

 

 

Thanks & Regards,

Nived N 🚀

LinkedIn: Nived N's LinkedIn
YouTube: Nived N's YouTube Channel

🔍 Found my answer helpful? Please consider marking it as the solution!
Your appreciation keeps me motivated. Thank you! 🙌

drmrbrewer
Helper I
Helper I

@Nived_Nambiar thanks for the reply, I'll check out your try/catch suggestion, it looks neater than my flow.  Question though: I need the flow to continue after the try/catch/final blocks, assuming that the try didn't end up in catch/final... will that be the case here?

 

Regarding:

 

Also regarding the trigger to check for existence of file, i see you are triggering the flow when the

> file is created , i assume you are trying to fetch the proeprties of same file, if yes it should not

> throw error right?

 

I am checking for any new file e.g. "my_file.txt" and then reading some metadata from a file with the same name but .json extension e.g. "my_file.json".  Actually, to ensure uniqueness, I am just adding the .json after the full name including extension e.g. "my_file.txt.json" (in case there is "my_file.txt" and "my_file.docx").

 

But not all new files will have an associated .json file (and that's expected and normal).

 

So ideally, I don't want to trigger the action and then fail/cancel it if there is no .json file... but it would be far cleaner to not trigger at all in the first place (if there is no json file).

 

Hi @drmrbrewer 

 

You can place actions after final block to run if try is executed successfully, but make sure that to use that error boolean variable so that you can run the flow only when there is no error (or that error variable is false)

 

There is no action which checks the existence of file, but one way you can try is 

 

1. List all files in folder

2. use filter array to filter for the file name, if file exists, then no such json file exists and you can configure flow accordingly.

 

 

Thanks & Regards,

Nived N 🚀

LinkedIn: Nived N's LinkedIn
YouTube: Nived N's YouTube Channel

🔍 Found my answer helpful? Please consider marking it as the solution!
Your appreciation keeps me motivated. Thank you! 🙌

drmrbrewer
Helper I
Helper I

@Nived_Nambiar 

 

> You can place actions after final block to run if try is executed successfully, but make sure that to

> use that error boolean variable so that you can run the flow only when there is no error

> (or that error variable is false)

 

Though presumably if my catch block is already doing a Terminate on error, there is no need to check the variable again after the final block?

 

> There is no action which checks the existence of file, but one way you can try is

 

I can already check for the existence of the file using an action (that is what the Get File Metadata action is doing... it gets the ID but also errors out if the file does not exist... hence allowing me to use this to check for existence). 

 

The question I have now is not how to use an action to check for file existence, but whether I can use a condition of the trigger itself... it's better that the flow does not trigger at all if there is no metadata file (vs triggering and then failing after triggering).

 

Hi,

 

Yes you can add a filter on the Trigger itself. I am not sure what the metadata file is so I cannot exactly tell you what the filter should look like, as the trigger condition can be just about anything.

 

Click ... of the Trigger

Go to Settings

Add a trigger such as 

 

@equals(triggerBody()?['{FilenameWithExtension}'],'my meta data file')

 

In your case, whatever your doing in the Get meta data file, you need to turn that into a condition check as a file a such bla bla bla is NULL or empty or some name etc


Cheers
If you like my answer, please Mark it as Resolved, and give it a thumbs up, so it can help others
Thank You
Michael Gernaey MCT | MCSE | MCP | Self-Contractor| Ex-Microsoft
https://gernaeysoftware.com
LinkedIn: https://www.linkedin.com/in/michaelgernaey

drmrbrewer
Helper I
Helper I

@FLMike thanks.  It's not quite what I mean.  Let me explain more...

 

At the moment, I'm triggering on any new file, with any name.  Some of those might have an associated .json metadata file (with same base name).  So the .json metadata file doesn't have a fixed name... it is based on the associated file. 

 

So I might create new file "myfile.txt" with associated "myfile.txt.json" (same name but with a .json extension).  I trigger on any non-json file (could be .txt .pdf .docx ... anything)... that is the file I want to work on.  Then I check if there's a corresponding .json file, and use that to update metadata of the main file.

 

So the condition on the trigger needs to be "only trigger from this file if there another file in the same folder with the same name as this file but with an extra .json".

 

Yeah that's totally possible. And I got it before, thought I was clear you needed to write what would work for you apologies if somehow it was not.

 

If you want the filter to get the incoming name, change the extension to .json and validate it exists.. you can.

 

And if nothing else, you could have added a condition to check it initially, but you would have had to paths, just like in catching that an error occurred in a parallel branch. You would have had Yes and No condition branch.

 

Whatever works for you works for me 🙂


Cheers
If you like my answer, please Mark it as Resolved, and give it a thumbs up, so it can help others
Thank You
Michael Gernaey MCT | MCSE | MCP | Self-Contractor| Ex-Microsoft
https://gernaeysoftware.com
LinkedIn: https://www.linkedin.com/in/michaelgernaey

drmrbrewer
Helper I
Helper I

@FLMike 

 

> If you want the filter to get the incoming name, change the extension to .json and validate it exists.. you can.

 

How do you validate that another file exists in the Trigger Condition?

Hi @drmrbrewer 

 

I think you need to check for json file only when the file of other extension is created, for that follow this approach.

Nived_Nambiar_0-1695606987186.png

 

First use trigger to trigger when non json files are added to a specific folder , for making it trigger only when non json files are added, use the below trigger condition in trigger

@equals(not(endsWith(triggerOutputs()?['body/{FilenameWithExtension}'],'.json')),true)

Nived_Nambiar_1-1695607052050.png

 

 

Next use Get files to get the details of all files in folder, you can point this action for the folder location where json file will be created.

Also use filter query to check for the files having name equals Name of file created by trigger.json , like below

Nived_Nambiar_2-1695607139253.png

 

The output of above action would be list of values which satisifies the filter condition, if output has no values, then it means there is no json file corresponding to the created file, else there is a json file corresponding to that of file

 

Nived_Nambiar_3-1695607225412.png

 

Expression used to evaluate the whether the output of get files has values or not:

length(outputs('Get_files_(properties_only)')?['body/value'])
 
Nived_Nambiar_4-1695607305685.png

 

 
In Yes branch: do actions when json file not exists
in No branch: do action when json file exists 
 
Hope it helps !
Thanks & Regards,

Nived N 🚀

LinkedIn: Nived N's LinkedIn
YouTube: Nived N's YouTube Channel

🔍 Found my answer helpful? Please consider marking it as the solution!
Your appreciation keeps me motivated. Thank you! 🙌

drmrbrewer
Helper I
Helper I

@Nived_Nambiar it's still not what I mean.  I don't know how else to explain it.  I already know how to use an action to check whether the json file exists... see my original flow which already does it.  But that check happens after the flow has been triggered.  I'm trying to avoid the flow triggering at all, if the json file does not exist... i.e. using a trigger condition not an action.  Never mind, you answered my original question re try/catch and that's working nicely, thanks.

 

FWIW I think I'm going about this the wrong way round.  At the moment I trigger on creation of a non-json file (this is the file I'm really interested in, to update properties of that file) and then check if there's a corresponding json file (bailing out if not).  I think it would be better to trigger on creation of the json file instead, and check if the corresponding file exists (the file being specified in the json).  That way, I'm only triggering when there is a json, and perhaps only in a specific folder... this will limit the flows that are triggered.

Helpful resources

Announcements

Back to Basics: All Ten Tuesday Tips

Our ongoing BACK TO BASICS: TUESDAY TIP series dedicated to helping both new members and seasoned veterans of our community learn and grow reached a milestone ten posts! We're excited to present this "one stop" post for each of our #TuesdayTips, making it easier to find what you're looking for and help you understand the community: from ranking and badges to profile avatars, from being a Super User to blogging in the community, and so much more. Thank you for your incredible support for this series--we are so glad it was able to help so many of you navigate your community experience.   Back to Basics Tuesday Tip #1: All About Your Community Account Find out the basics of your community account. Whether it's changing your username, updating an email address, understanding GDPR, or customizing your profile, this is the place to begin.  ○ Power Apps ○ Power Automate ○ Power Pages ○ Copilot Studio     Back to Basics Tuesday Tip #2: All About Community Ranks Have you ever wondered how your fellow community members earn the different ranks available? What is the difference between an Advocate and a Helper, a Solution Sage and a Community Champion? In this #TuesdayTip, we share the secrets and tips to help YOU keep your ranking growing--and why it's so important to our communities. ○ Power Apps ○ Power Automate ○ Power Pages ○ Copilot Studio     Back to Basics Tuesday Tip #3: Contributing to the Community If you need to understand how subscriptions or notifications work, how to use search to find the answers you're looking for, or editing your posts, this is the place to start. With these handy tips, you'll find what you're looking for, ask some great questions, and format your posts perfectly! ○ Power Apps ○ Power Automate ○ Power Pages ○ Copilot Studio     Back to Basics Tuesday Tip #4: What is a Super User? Have you ever been exploring the community and come across a user with this unique icon next to their name? It means you have found the actual, real-life superheroes of the Power Platform Community! Super Users are our heroes because of the way they are consistently helpful with everything from solutions to flagging spam, offering insight on the community, and so much more! Find out more in this #TuesdayTip.   ○ Power Apps ○ Power Automate ○ Power Pages ○ Copilot Studio     Back to Basics Tuesday Tip #5: How to Become a Community Blog Author We want YOU to be part of the community blog! Sharing your knowledge of Power Platform is an essential part of our community!  By sharing what you know and have learned with the community in the Power Platform in the community blog, you help us create a more engaged and informed community, better equipped to tackle complex challenges.  To get started with blogging across the Power Platform communities, please visit the following links. ○ Power Apps ○ Power Automate ○ Power Pages ○ Copilot Studio     Back to Basics Tuesday Tip #6 All About Community User Groups Being part of, starting, or leading a User Group can have many great benefits for our community members who want to learn, share, and connect with others who are interested in the Microsoft Power Platform and the low-code revolution. Don't wait. Get involved with (or maybe even start) a User Group today--just follow the tips below to get started. ○ Power Apps ○ Power Automate ○ Power Pages ○ Copilot Studio     Back to Basics Tuesday Tip #7: Resources for User Groups Once you've launched your Community User Group, we are excited to have many resources available that can help you lead, engage, and grow your User Group! Whether it's access to the Microsoft Community Tenant for User Groups, help with finding speakers for your User Group meetings (both local and virtual speakers), and even finding spaces to have your meetings in--check out this #TuesdayTip to get what you need! ○ Power Apps ○ Power Automate ○ Power Pages ○ Copilot Studio     Back to Basics Tuesday Tip #8: All About Subscriptions and Notifications Keeping track of what you want to know and how you want to find out about it may seem confusing. This #TuesdayTip is all about your community profile's subscriptions and notifications settings. Check out the links below for clear directions and how-to's. ○ Power Apps ○ Power Automate ○ Power Pages ○ Copilot Studio     Back to Basics Tuesday Tip #9: All About the Community Galleries Have you checked out the library of content in our galleries? Whether you're looking for the latest info on an upcoming event, a helpful webinar, or tips and tricks from some of our most experienced community members, our galleries are full of the latest and greatest video content for the Power Platform communities. Find out more by following the links below. ○ Power Apps ○ Power Automate ○ Power Pages ○ Copilot Studio       Back to Basics Tuesday Tip #10: Community Support Whether you're a seasoned community veteran or just getting started, you may need a bit of help from time to time! If you need to share feedback with the Community Engagement team about the community or are looking for ways we can assist you with user groups, events, or something else, Community Support is the place to start. Community Support is part of every one of our communities, accessible to all our community members, so find out what it means for your community with our last #TuesdayTip. ○ Power Apps ○ Power Automate ○ Power Pages ○ Copilot Studio     Thank you for your support for our #TuesdayTip series. We look forward to bringing you more tips and tricks to help make your community experience the best it can be!

November 2023 Community Newsletter

Welcome to our November Newsletter, where we highlight the latest news, product releases, upcoming events, and the amazing work of our outstanding Community members. If you're new to the Community, please make sure to follow the latest News & Announcements and check out the Community on LinkedIn as well! It's the best way to stay up-to-date with all the news from across the Power Platform and beyond.        This month's highlights:- - Our most active community members- Microsoft Power Up Program- Microsoft Community Days website - The latest blogs and more                 COMMUNITY HIGHLIGHTS Check out the most active community members of the last month. These hardworking members are posting regularly, answering questions, kudos, and providing top solutions in their communities. We are so thankful for each of you--keep up the great work! If you hope to see your name here next month, just get active! FLMikePstork1Nived_NambiarWarrenBelzSprongYeManishSolankiLaurensMwskinnermlcAgniusExpiscornovuscreativeopinion KatieAUinzil2kHaressh2728hafizsultan242douicmccaughanwoLucas001domliu   Power Up Program Click the image below to discover more about the amazing Microsoft Power Up Program, as Reem Omar, Abbas Godhrawala, Chahine Atallah, Ruby Ruiz Brown, Juan Francisco Sánchez Enciso, Joscelyne Andrade Arévalo, Eric G. and Paulina Pałczyńska share how non-tech professionals can successfully advance into a new career path using Microsoft #PowerPlatform.   To find out more about this amazing initiative, click here to apply for the program and reboot your journey into low-code app development today!     Community Days - Event Website Have you checked out the Community Days website yet? Dedicated to the volunteer community organizers around the world, Community Days is the perfect place to find an event near you or add an event for wider exposure. Many thanks to Thomas Daly, Sharon Weaver, Sedat Tum, Jonathan Weaver, Manpreet Singh, David Leveille, Jason Rivera, Mike Maadarani, Rob Windsor and the team for all their hard work. Anyone can host a Community Day on any topic relevant to our industry, just click the image below to find out more.       EVENT NEWS Power Platform French Summit - Paris/Virtual - 6-7th Dec It's not long now until the Power Platform French Summit, which takes place both virtually and in-person at the Microsoft France conference center in Paris on 6-7th December 2023. If you can't make it in-person, all sessions will also be broadcast on virtual networks for better distribution and accessibility.   There's a fantastic array of speakers, including Jérémy LAPLAINE, Amira Beldjilali, Rémi Chambard, Erika Beaumier, Makenson Frena, Assia Boutera, Elliott Pierret, Clothilde Facon, Gilles Pommier, Marie Aubert, Antoine Herbosa, Chloé Moreau, Raphaël Senis, Rym Ben Hamida, Loïc Cimon, Joséphine Salafia, David Zoonekyndt, Aïcha Charpentier, Henry Jammes, Milene Rochard, Mehdi EL YASSIR, and many more. Click the image below for more information.       LATEST COMMUNITY BLOG ARTICLES Power Apps Community Blog Power Automate Community Blog Copilot Community Blog Power Pages Community Blog

Back to Basics Tuesday Tip #10: Community Support

This is the TENTH post in our ongoing series dedicated to helping the amazing members of our community--both new members and seasoned veterans--learn and grow in how to best engage in the community! Each Tuesday, we feature new content that will help you best understand the community--from ranking and badges to profile avatars, from Super Users to blogging in the community. Our hope is that this information will help each of our community members grow in their experience with Power Platform, with the community, and with each other!   This Week: All About Community Support   Whether you're a seasoned community veteran or just getting started, you may need a bit of help from time to time! If you need to share feedback with the Community Engagement team about the community or are looking for ways we can assist you with user groups, events, or something else, Community Support is the place to start.   Community Support is part of every one of our communities, accessible to all our community members.     Power Apps: https://powerusers.microsoft.com/t5/Community-Support/ct-p/pa_community_support Power Automate: https://powerusers.microsoft.com/t5/Community-Support/ct-p/mpa_community_support Power Pages: https://powerusers.microsoft.com/t5/Community-Support/ct-p/mpp_community_support Copilot Studio: https://powerusers.microsoft.com/t5/Community-Support/ct-p/pva_community-support   Within each community's Community Support page, you'll find three distinct areas, each with a different focus to help you when you need support from us most.     Community Accounts & Registration is the go-to source for any and all information related to your account here in the community. It's full of great knowledge base articles that will help you manage your community account and know what steps to take if you wish to close your account.  ●  Power Apps  ●  Power Automate  ●  Power Pages, ●  Copilot Studio      Using the Community is your source for assistance with everything from Community User Groups to FAQ's and more. If you want to know what kudos are, how badges work, how to level up your User Group or something else, you will probably find the answers here. ●  Power Apps   ● Power Automate    ●  Power Pages  ●  Copilot Studio      Community Feedback is where you can share opportunities, concerns, or get information from the Community Engagement team. It's your best place to post a question about an issue you're having in the community, a general question you need answered. Whatever it is, visit Community Feedback to get the answers you need right away. Our team is honored to partner with you and can't wait to help you!   ●  Power Apps  ● Power Automate   ● Power Pages   ● Copilot Studio  

Microsoft Ignite 2023: The Recap

What an amazing event we had this year, as Microsoft showcased the latest advancements in how AI has the potential to reshape how customers, partners and developers strategize the future of work. Check out below some of our handpicked videos and Ignite announcements to see how Microsoft is driving real change for users and businesses across the globe.   Video Highlights Click the image below to check out a selection of Ignite 2023 videos, including the "Microsoft Cloud in the era of AI" keynote from Scott Guthrie, Charles Lamanna, Arun Ulag, Sarah Bird, Rani Borkar, Eric Boyd, Erin Chapple, Ali Ghodsi, and Seth Juarez. There's also a great breakdown of the amazing Microsoft Copilot Studio with Omar Aftab, Gary Pretty, and Kendra Springer, plus exciting sessions from Rajesh Jha, Jared Spataro, Ryan Jones, Zohar Raz, and many more.     Blog Announcements Microsoft Copilot presents an opportunity to reimagine the way we work—turning natural language into the most powerful productivity tool on the planet. With AI, organizations can unearth value in data across productivity tools like business applications and Microsoft 365. Click the link below to find out more.     Check out the latest features in Microsoft Power Apps that will help developers create AI-infused apps faster, give administrators more control over managing thousands of Microsoft Power Platform makers at scale, and deliver better experiences to users around the world. Click the image below to find out more.     Click below to discover new ways to orchestrate business processes across your organization with Copilot in Power Automate. With its user-friendly interface that offers hundreds of prebuilt drag-and-drop actions, more customers have been able to benefit from the power of automation.     Discover how Microsoft Power Platform and Microsoft Dataverse are activating the strength of your enterprise data using AI, the announcement of “plugins for Microsoft Copilot for Microsoft 365”, plus two new Power Apps creator experiences using Excel and natural language.       Click below to find out more about the general availability of Microsoft Fabric and the public preview of Copilot in Microsoft Fabric. With the launch of these next-generation analytics tools, you can empower your data teams to easily scale the demand on your growing business.     And for the rest of all the good stuff, click the link below to visit the Microsoft Ignite 2023 "Book of News", with over ONE HUNDRED announcements across infrastructure, data, security, new tools, AI, and everything else in-between!        

Back to Basics Tuesday Tip #9: All About the Galleries

This is the ninth post in our series dedicated to helping the amazing members of our community--both new members and seasoned veterans--learn and grow in how to best engage in the community! Each Tuesday, we feature new content that will help you best understand the community--from ranking and badges to profile avatars, from Super Users to blogging in the community. Our hope is that this information will help each of our community members grow in their experience with Power Platform, with the community, and with each other!     Today's Tip: All About the Galleries Have you checked out the library of content in our galleries? Whether you're looking for the latest info on an upcoming event, a helpful webinar, or tips and tricks from some of our most experienced community members, our galleries are full of the latest and greatest video content for the Power Platform communities.   There are several different galleries in each community, but we recommend checking these out first:   Community Connections & How-To Videos Hosted by members of the Power Platform Community Engagement  Team and featuring community members from around the world, these helpful videos are a great way to "kick the tires" of Power Platform and find out more about your fellow community members! Check them out in Power Apps, Power Automate, Power Pages, and Copilot Studio!         Webinars & Video Gallery Each community has its own unique webinars and videos highlighting some of the great work being done across the Power Platform. Watch tutorials and demos by Microsoft staff, partners, and community gurus! Check them out: Power Apps Webinars & Video Gallery Power Automate Webinars & Video Gallery Power Pages Webinars & Video Gallery Copilot Studio Webinars & Video Gallery   Events Whether it's the excitement of the Microsoft Power Platform Conference, a local event near you, or one of the many other in-person and virtual connection opportunities around the world, this is the place to find out more about all the Power Platform-centered events. Power Apps Events Power Automate Events Power Pages Events Copilot Studio Events   Unique Galleries to Each Community Because each area of Power Platform has its own unique features and benefits, there are areas of the galleries dedicated specifically to videos about that product. Whether it's Power Apps samples from the community or the Power Automate Cookbook highlighting unique flows, the Bot Sharing Gallery in Copilot Studio or Front-End Code Samples in Power Pages, there's a gallery for you!   Check out each community's gallery today! Power Apps Gallery Power Automate Gallery Power Pages Gallery Copilot Studio Gallery

Unlocking the Power of Community: A Journey with Featued User Group leaders Geetha Sivasailam and Ben McMann

In the bustling world of technology, two dynamic leaders, Geetha Sivasailam and Ben McMann, have been at the forefront, steering the ship of the Dallas Fort Worth Power Platform User Group since its inception in February 2019. As Practice Lead (Power Platform | Fusion Dev) at Lantern, Geetha brings a wealth of consulting experience, while Ben, a key member of the Studio Leadership team at Lantern, specializes in crafting strategies that leverage Microsoft digital technologies to transform business models.   Empowering Through Community Leadership Geetha and Ben's journey as user group leaders began with a simple yet powerful goal: to create a space where individuals across the DFW area could connect, grow their skills, and add value to their businesses through the Power Platform. The platform, known for its versatility, allows users to achieve more with less code and foster creativity.   The Power of Community Impact Reflecting on their experiences, Geetha and Ben emphasize the profound impact that community engagement has had on both their professional and personal lives. The Power Platform community, they note, is a wellspring of resources and opportunities, fostering continuous learning, skill enhancement, and networking with industry experts and peers.   Favorite Moments and Words of Wisdom The duo's favorite aspect of leading the user group lies in witnessing the transformative projects and innovations community members create with the Power Platform. Their advice to aspiring user group leaders? "Encourage diverse perspectives, maintain an open space for idea-sharing, stay curious, and, most importantly, have fun building a vibrant community."   Building Bridges, Breaking Barriers Geetha and Ben encourage others to step into the realm of user group leadership, citing the rewarding experience of creating and nurturing a community of like-minded individuals. They highlight the chance to influence, impact, and positively guide others, fostering connections that extend beyond mere technology discussions.   Joining a User Group: A Gateway to Growth The leaders stress the importance of joining a user group, emphasizing exposure to diverse perspectives, solutions, and career growth opportunities within the Power Platform community. "Being part of such a group provides a supportive environment for seeking advice, sharing experiences, and navigating challenges."   A Year of Milestones Looking back at the past year, Geetha and Ben express pride in the group's growth and global participation. They recount the enriching experience of meeting members in person at the Microsoft Power Platform conference, showcasing the diverse range of perspectives and guest speakers that enriched the community's overall experience.   Continuous Learning on the Leadership Journey As user group leaders, Geetha and Ben recognize the continuous learning curve, blending interpersonal skills, adaptability, and dedication to foster a vibrant community. They highlight the importance of patience, persistence, and flexibility in achieving group goals, noting the significance of listening to the needs and suggestions of group members.They invite all tech enthusiasts to join the Dallas Fort Worth Power Platform User Group, a thriving hub where the power of community propels individuals to new heights in the dynamic realm of technology.

Users online (3,312)