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

Help Create flow with EXCEL - Perform a data query.


Hello, I'm new to using Power Automate Desktop.

 

I would like to create a flow:

 

1. Open a text input where you can put text and hit ENTER.
2. Find that information in an excel like this:

3.a If it finds a value equal to the one provided to the Input text, a dialog box with the entire Row will be displayed on the screen.

3.b. It will show a message on the screen saying something "No field with that value was found."


Below is an example of my real practical case:

I provide any field in the input text, but in this case, for example, in the input text I put the IP (RED MARK) and I want the output message to be the entire row (BLUE MARK)  where that IP  is located.

JuanManuelA_2-1712049888999.png

 



16 REPLIES 16
Agnius
Most Valuable Professional
Most Valuable Professional

Have you tried doing anything yourself already? These forums are meant to help you when you get stuck, and not really for having other people build solutions for you for free. This is a community forum for finding answers to specific questions.

 

I'll provide some guidance, but please put in some effort yourself before asking further questions.

 

To provide inputs to your flow, you can use the Display input dialog action under the Message boxes actions group.

To find a value in an Excel file, you will first need to open the file via the Launch Excel action, and then use Find and replace cells in Excel worksheet. This will return a row index that you can use to check if it found anything (in an If condition action), and also can be used in a Read from Excel worksheet action to retrieve the other values of the same row and display them to you.

-------------------------------------------------------------------------------------------------------------------------
If I have answered your question, please mark it as the preferred solution. If you like my response, please give it a Thumbs Up.
Regards, Agnius Bartninkas

Hello @Agnius ,

Yes, I have tried to do everything I know with my little knowledge.
I exhausted options, I watched videos, I read posts, but I can't reproduce my case.

I always tend to fight with the problem.

But I wanted to make a simpler post so that it is well understood, since in previous posts of mine that you can see with Power Automate Cloud I tend to provide a lot of information and it does not seem to be very effective in helping to solve the problem.

I attach my current progress with my flow:

JuanManuelA_0-1712050976287.png

 



Agnius
Most Valuable Professional
Most Valuable Professional

Well, you are missing a few actions there. You have two options:

  1. Since you are already reading the entire data table into %ExcelTable%, you could use Find or replace in data table instead of Find and replace in Excel worksheet. This will return row indexes for your data table. You can then use them to return the values to you and you can pass them into the message box.
  2. If you removed the Read from Excel worksheet action, and simply used the Find and replace in Excel worksheet, you would then need to add another Read from Excel worksheet that only reads the one row, using the row index for the match, instead of reading the entire sheet.
-------------------------------------------------------------------------------------------------------------------------
If I have answered your question, please mark it as the preferred solution. If you like my response, please give it a Thumbs Up.
Regards, Agnius Bartninkas

Hi @Agnius 

This is my current flow.

JuanManuelA_0-1712053433743.png

 



Due to my limited knowledge, I do not understand the part of how to carry out this flow, but especially the part of getting the entire row of the value that matches the search.

Could you send a screenshot of what any of the cases would look like?
I really didn't understand how to do it, but maybe this way you can guide me.



Agnius
Most Valuable Professional
Most Valuable Professional

You will need to use the row index from %DataTableMatches%. It is a data table of its own that will contain column and row indexes for each match. So, you can get the first match as %DataTableMatches[0]['Row']%. 

 

Now, before you do that, you need a condition to check if it found any matches. So, use an If condition and check if %DataTableMatches.RowsCount% is greater than 0. If it is, then you found some matches and you can proceed further. If it's not greater to 0, it did not find any matches, and you should use the default message you defined earlier.

 

Now, if you do get some matches, use Convert text to number first on %DataTableMatches[0]['Row']% to convert it to a numeric index. No idea why the product people at Microsoft thought it was a good idea to store indexes as strings, but they did that, and we need to convert them to make any use of them.

 

After you have converted it and stored it, for example, in %RowIndex%, you can use it to retrieve your row. %ExcelData[RowIndex]% will return the entire row. You can push that to your Display message action.

-------------------------------------------------------------------------------------------------------------------------
If I have answered your question, please mark it as the preferred solution. If you like my response, please give it a Thumbs Up.
Regards, Agnius Bartninkas
Deenuji
Community Champion
Community Champion

@JuanManuelA 

I have slightly modified your workflow:

Deenuji_0-1712054674492.png

 

Code:

Excel.LaunchExcel.LaunchAndOpenUnderExistingProcess Path: $'''C:\\Deenu\\Asset Details.xlsx''' Visible: True ReadOnly: False Instance=> ExcelInstance
Excel.ReadFromExcel.ReadAllCells Instance: ExcelInstance ReadAsText: False FirstLineIsHeader: True RangeValue=> ExcelData
Display.InputDialog Title: $'''Enter''' Message: $'''Enter the text to search in excel''' InputType: Display.InputType.SingleLine IsTopMost: False UserInput=> InputQuery ButtonPressed=> ButtonPressed
Variables.FindOrReplaceInDataTable.FindItemInDataTableByColumnIndex DataTable: ExcelData AllMatches: True ValueToFind: InputQuery MatchCase: False MatchEntireCellContents: False ColumnNameOrIndex: 1 DataTableMatches=> DataTableMatches
LOOP FOREACH CurrentItem IN DataTableMatches
    SET RowNo TO CurrentItem['Row']
    Text.ToNumber Text: RowNo Number=> RowAsNumber
    Display.ShowMessageDialog.ShowMessage Title: $'''Info''' Message: $'''Name PC: %ExcelData[RowAsNumber][0]%
SERIAL NUMBER: %ExcelData[RowAsNumber][4]%
MODEL PC: %ExcelData[RowAsNumber][4]%
''' Icon: Display.Icon.None Buttons: Display.Buttons.OK DefaultButton: Display.DefaultButton.Button1 IsTopMost: False ButtonPressed=> ButtonPressed2
END

 

How to copy/paste the above code into your power automate desktop?

Deenuji_1-1712054758657.gif

 


Thanks,
Deenuji Loganathan 👩‍💻
Automation Evangelist 🤖
Follow me on LinkedIn 👥

-------------------------------------------------------------------------------------------------------------
If I've helped solve your query, kindly mark my response as the solution ✔ and give it a thumbs up!👍 Your feedback supports future seekers 🚀

@Deenuji 

Hello @Deenuji 

The problem that arises is that I have several sheets in Excel, all with the same format but I need the query to be in the ENTIRE BOOK

Could you guide me again?

JuanManuelA_0-1712056156587.png

 








Hi @JuanManuelA ,

 

Please find the attached solution.

 

VishnuReddy1997_0-1712056115685.pngVishnuReddy1997_1-1712056135425.png

 

Please copy and paste the below code into you new flow.

Code:

 

Display.InputDialog Title: $'''Please Provide the IP''' InputType: Display.InputType.SingleLine IsTopMost: False UserInput=> UserInput ButtonPressed=> ButtonPressed3
Excel.LaunchExcel.LaunchAndOpenUnderExistingProcess Path: $'''C:\\Users\\OneDrive\\Desktop\\Power Automate Desktop\\Practice\\Database\\Excel A.xlsx''' Visible: True ReadOnly: False Instance=> ExcelInstance
Excel.ReadFromExcel.ReadAllCells Instance: ExcelInstance ReadAsText: False FirstLineIsHeader: True RangeValue=> ExcelData
Excel.FindAndReplace.FindSingle Instance: ExcelInstance TextToFind: UserInput MatchCase: False MatchEntireCellContents: False SearchBy: Excel.SearchOrder.Rows FoundColumnIndex=> FoundColumnIndex FoundRowIndex=> FoundRowIndex
IF FoundRowIndex <> 0 THEN
Excel.ReadFromExcel.ReadCells Instance: ExcelInstance StartColumn: $'''A''' StartRow: FoundRowIndex EndColumn: $'''M''' EndRow: FoundRowIndex ReadAsText: False FirstLineIsHeader: False RangeValue=> Output_Data
Display.ShowMessageDialog.ShowMessage Message: Output_Data Icon: Display.Icon.None Buttons: Display.Buttons.OK DefaultButton: Display.DefaultButton.Button1 IsTopMost: False ButtonPressed=> ButtonPressed4
ELSE
Display.ShowMessageDialog.ShowMessage Message: $'''No field with that value was found.''' Icon: Display.Icon.None Buttons: Display.Buttons.OK DefaultButton: Display.DefaultButton.Button1 IsTopMost: False ButtonPressed=> ButtonPressed4
END
Excel.CloseExcel.CloseAndSave Instance: ExcelInstance

 


(Note:- if you got your solution you can mark as solution and gives kudos)

 

Thanks & Regards

Vishnu Reddy

 

 

Hello @VishnuReddy1997 

The problem that arises is that I have several sheets in Excel, all with the same format but I need the query to be in the ENTIRE BOOK

Could you guide me again?

JuanManuelA_0-1712056534660.png

 

 

Hi @JuanManuelA ,

 

Please find the updated code for all sheets.

 

VishnuReddy1997_0-1712057653097.png

 

VishnuReddy1997_1-1712057704784.png

 

Please copy and paste the below code into you new flow.

Code:

 

Display.InputDialog Title: $'''Please Provide the IP''' InputType: Display.InputType.SingleLine IsTopMost: False UserInput=> UserInput ButtonPressed=> ButtonPressed3
Excel.LaunchExcel.LaunchAndOpenUnderExistingProcess Path: $'''C:\\Users\\OneDrive\\Desktop\\Power Automate Desktop\\Practice\\Database\\Excel A.xlsx''' Visible: True ReadOnly: False Instance=> ExcelInstance
Excel.ReadFromExcel.ReadAllCells Instance: ExcelInstance ReadAsText: False FirstLineIsHeader: True RangeValue=> ExcelData
Excel.GetAllWorksheets Instance: ExcelInstance Worksheets=> SheetNames
LOOP FOREACH CurrentItem IN SheetNames
Excel.SetActiveWorksheet.ActivateWorksheetByName Instance: ExcelInstance Name: CurrentItem
Excel.FindAndReplace.FindSingle Instance: ExcelInstance TextToFind: UserInput MatchCase: False MatchEntireCellContents: False SearchBy: Excel.SearchOrder.Rows FoundColumnIndex=> FoundColumnIndex FoundRowIndex=> FoundRowIndex
IF FoundRowIndex <> 0 THEN
EXIT LOOP
END
END
IF FoundRowIndex <> 0 THEN
Excel.ReadFromExcel.ReadCells Instance: ExcelInstance StartColumn: $'''A''' StartRow: FoundRowIndex EndColumn: $'''M''' EndRow: FoundRowIndex ReadAsText: False FirstLineIsHeader: False RangeValue=> Output_Data
Display.ShowMessageDialog.ShowMessage Message: Output_Data Icon: Display.Icon.None Buttons: Display.Buttons.OK DefaultButton: Display.DefaultButton.Button1 IsTopMost: False ButtonPressed=> ButtonPressed4
ELSE
Display.ShowMessageDialog.ShowMessage Message: $'''No field with that value was found.''' Icon: Display.Icon.None Buttons: Display.Buttons.OK DefaultButton: Display.DefaultButton.Button1 IsTopMost: False ButtonPressed=> ButtonPressed4
END
Excel.CloseExcel.CloseAndSave Instance: ExcelInstance

 

(Note:- if you got your solution you can mark as solution and gives kudos)

 

Thanks & Regards

Vishnu Reddy

 

 

 

Hello @VishnuReddy1997 

And how could I make the information and specific fields look more user-friendly.

Maybe something like that?

 

JuanManuelA_0-1712060631085.png

 

 

 

In Deenuji's answer I saw that he attached something of a variable with the columns, how can I integrate something like that into the flow you propose.

Hi @JuanManuelA ,

 

Please replace the below updated code so it will display the results as shown in below image.

VishnuReddy1997_0-1712063631528.png

 

Please copy and paste the below code into you new flow.

Code:

 

Display.InputDialog Title: $'''Please Provide the IP''' InputType: Display.InputType.SingleLine IsTopMost: False UserInput=> UserInput ButtonPressed=> ButtonPressed3
Excel.LaunchExcel.LaunchAndOpenUnderExistingProcess Path: $'''C:\\Users\\OneDrive\\Desktop\\Power Automate Desktop\\Practice\\Database\\Excel A.xlsx''' Visible: True ReadOnly: False Instance=> ExcelInstance
Excel.ReadFromExcel.ReadAllCells Instance: ExcelInstance ReadAsText: False FirstLineIsHeader: True RangeValue=> ExcelData
Excel.GetAllWorksheets Instance: ExcelInstance Worksheets=> SheetNames
LOOP FOREACH CurrentItem IN SheetNames
Excel.SetActiveWorksheet.ActivateWorksheetByName Instance: ExcelInstance Name: CurrentItem
Excel.FindAndReplace.FindSingle Instance: ExcelInstance TextToFind: UserInput MatchCase: False MatchEntireCellContents: False SearchBy: Excel.SearchOrder.Rows FoundColumnIndex=> FoundColumnIndex FoundRowIndex=> FoundRowIndex
IF FoundRowIndex <> 0 THEN
EXIT LOOP
END
END
IF FoundRowIndex <> 0 THEN
Excel.ReadFromExcel.ReadCells Instance: ExcelInstance StartColumn: $'''A''' StartRow: FoundRowIndex EndColumn: $'''M''' EndRow: FoundRowIndex ReadAsText: False FirstLineIsHeader: False RangeValue=> Output_Data
Display.ShowMessageDialog.ShowMessage Message: $'''Name PC : %Output_Data[0][0]%
IP: %Output_Data[0][1]%
EXT offi : %Output_Data[0][2]%
Extension 1 : %Output_Data[0][3]%
Extension 2 : %Output_Data[0][4]%
Ext. 3 : %Output_Data[0][5]%
Serial Number : %Output_Data[0][6]%
Model PC: %Output_Data[0][7]%
Proveedor : %Output_Data[0][8]%
Fecha Compra: %Output_Data[0][9]%
Processor : %Output_Data[0][10]%
RAM: %Output_Data[0][11]%
S.O Installation: %Output_Data[0][12]%''' Icon: Display.Icon.None Buttons: Display.Buttons.OK DefaultButton: Display.DefaultButton.Button1 IsTopMost: False ButtonPressed=> ButtonPressed4
ELSE
Display.ShowMessageDialog.ShowMessage Message: $'''No field with that value was found.''' Icon: Display.Icon.None Buttons: Display.Buttons.OK DefaultButton: Display.DefaultButton.Button1 IsTopMost: False ButtonPressed=> ButtonPressed4
END
Excel.CloseExcel.CloseAndSave Instance: ExcelInstance

 

 

(Note:- if you got your solution you can mark as solution and gives kudos)

 

Thanks & Regards

Vishnu Reddy

 

 

@JuanManuelA 

 

You can also create custom form to show your result more user friendly. Please refer the below screenshot how to use that.

Deenuji_0-1712071466872.png

 

In case still if you require any support on your use case please let me know.


Thanks,
Deenuji Loganathan 👩‍💻
Automation Evangelist 🤖
Follow me on LinkedIn 👥

-------------------------------------------------------------------------------------------------------------
If I've helped solve your query, kindly mark my response as the solution ✔ and give it a thumbs up!👍 Your feedback supports future seekers 🚀

Hi, @VishnuReddy1997 

I am experiencing errors when searching for different Assets in my excel,

I attach tests carried out on the SAME SHEET searching for different PC NAMES examples.

Or it shows disordered or bad or empty data.
Some show well

On excel row 74  (WRONG):

JuanManuelA_0-1712071749221.png

 

On excel row 60  (GOOD):

JuanManuelA_1-1712071964021.png



On excel row 105  (WRONG):

JuanManuelA_2-1712072151412.png

 

Deenuji
Community Champion
Community Champion

@JuanManuelA 

With an assumption all sheets table columns are same, Please find the optimized flow and it will work for all sheets without an issue.

Deenuji_0-1712078856080.png

 

Code:

 

Display.InputDialog Title: $'''Enter''' Message: $'''Enter the text to search in excel''' InputType: Display.InputType.SingleLine IsTopMost: False UserInput=> InputQuery ButtonPressed=> ButtonPressed
Excel.LaunchExcel.LaunchAndOpenUnderExistingProcess Path: $'''C:\\Deenu\\NewAsset_Data.xlsx''' Visible: True ReadOnly: False Instance=> ExcelInstance
Excel.GetAllWorksheets Instance: ExcelInstance Worksheets=> SheetNames
LOOP FOREACH Sheetname IN SheetNames
    Excel.SetActiveWorksheet.ActivateWorksheetByName Instance: ExcelInstance Name: Sheetname
    Excel.ReadFromExcel.ReadAllCells Instance: ExcelInstance ReadAsText: False FirstLineIsHeader: True RangeValue=> ExcelData
    Variables.FindOrReplaceInDataTable.FindItemInDataTableByColumnIndex DataTable: ExcelData AllMatches: True ValueToFind: InputQuery MatchCase: False MatchEntireCellContents: False ColumnNameOrIndex: 1 DataTableMatches=> DataTableMatches
    LOOP FOREACH CurrentItem IN DataTableMatches
        SET RowNo TO CurrentItem['Row']
        Text.ToNumber Text: RowNo Number=> RowAsNumber
        Display.ShowMessageDialog.ShowMessage Title: $'''Info''' Message: $'''Name PC: %ExcelData[RowAsNumber][0]%
SERIAL NUMBER: %ExcelData[RowAsNumber][4]%
MODEL PC: %ExcelData[RowAsNumber][5]%
''' Icon: Display.Icon.None Buttons: Display.Buttons.OK DefaultButton: Display.DefaultButton.Button1 IsTopMost: False ButtonPressed=> ButtonPressed2
    END
END

 

 

Please let me know in case if you have any queries on the same.

 


Thanks,
Deenuji Loganathan 👩‍💻
Automation Evangelist 🤖
Follow me on LinkedIn 👥

-------------------------------------------------------------------------------------------------------------
If I've helped solve your query, kindly mark my response as the solution ✔ and give it a thumbs up!👍 Your feedback supports future seekers 🚀

Hi @JuanManuelA ,

 

Are you maintaining fixed template for storing details. If you maintain fixed template this issue will no occur.

 

 

(Note:- if you got your solution you can mark as solution and gives kudos)

 

Thanks & Regards

Vishnu Reddy

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