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

How use list variable for follow up question in Ask a Question action.

Hi @HenryJammes

and everyone, Hope you all doing well.

I am trying to use list variable in ask a Question for dynamically access the  variable data as prompt question .
i am unable to create list variable as i want to show max of 4 Question prompt , The question will come from power automation in json right now i am try to get the belwo schema but it giving me error that expected StringDatatype .
power automation Schema:

{
    "type": "array",
    "items": {
        "type": "object",
        "properties": {
            "DisplayName": {
                "type": "string"
            },
            "question": {
                "type": "string"
            },
            "id": {
                "type": "integer"
            }
        },
        "required": [
            "DisplayName",
            "question",
            "id"
        ]
    }
}
 
1 ACCEPTED SOLUTION

Accepted Solutions

In your parse value node, have you tried "From sample data"?

In the JSON you shared, this is the schema you should use for the Record type:

 

kind: Record
properties:
  json:
    type:
      kind: Table
      properties:
        DisplayName: String
        id: Number
        question: String

Then you'll be able to display the .json table as part of your record variable.

View solution in original post

9 REPLIES 9
HenryJammes
Copilot Studio
Copilot Studio

Hi @Maxmellien 

 

Can you share a sample payload that Power Automate returns and that you want to use Copilot Studio as options for a question?

 

Henry

Maxmellien
Helper I
Helper I

Hi @HenryJammes , 
Thanks for quick response.

here is my payload that will come to http action in Power automate:

output body:

[
  {
    "DisplayName": "What is your favorite color?",
    "question": "What is your favorite color?",
    "id": 1
  },
  {
    "DisplayName": "How did you discover our services?",
    "question": "How did you discover our services?",
    "id": 2
  },
  {
    "DisplayName": "Tell us about your experience with our products.",
    "question": "Tell us about your experience with our products.",
    "id": 3
  }
]

After that i use ParseJson and this action output is:

Input Schema:

{
  "type": "array",
  "items": {
    "type": "object",
    "properties": {
      "DisplayName": {
        "type": "string"
      },
      "question": {
        "type": "string"
      },
      "id": {
        "type": "integer"
      }
    },
    "required": [
      "DisplayName",
      "question",
      "id"
    ]
  }
}

Output body:

[
  {
    "DisplayName": "What is your favorite color?",
    "question": "What is your favorite color?",
    "id": 1
  },
  {
    "DisplayName": "How did you discover our services?",
    "question": "How did you discover our services?",
    "id": 2
  },
  {
    "DisplayName": "Tell us about your experience with our products.",
    "question": "Tell us about your experience with our products.",
    "id": 3
  }
]

 

After this return value to PVA:
input Schema:

{
  "type": "object",
  "properties": {
    "json": {
      "title": "JSON",
      "type": "string",
      "x-ms-content-hint": "TEXT",
      "x-ms-dynamically-added": true
    }
  },
  "additionalProperties": {}
}

input body:

{
  "json": [
    {
      "DisplayName": "What is your favorite color?",
      "question": "What is your favorite color?",
      "id": 1
    },
    {
      "DisplayName": "How did you discover our services?",
      "question": "How did you discover our services?",
      "id": 2
    },
    {
      "DisplayName": "Tell us about your experience with our products.",
      "question": "Tell us about your experience with our products.",
      "id": 3
    }
  ]
}

Here is Flow images:

Maxmellien_0-1704958520397.png



Below is my PVA FLOW:

Maxmellien_1-1704958804244.pngMaxmellien_2-1704958847681.png


 I got this error from PA in PVA action:

Bot said:
Error Message: The parameter with name ‘json’ on flow ‘Get JSON Data from FastAPI’ (‘ba806a9a-c1af-ee11-a569-6045bd006ade’) evaluated to type ‘TableDataType’ , expected type ‘StringDataType’ Error Code: FlowActionBadRequest Conversation Id: 32216d81-9419-41e5-9c76-d3f86b9a08e5 Time (UTC): 2024-01-11T07:42:55.408Z

here is image:

Maxmellien_3-1704959079079.png


What should be the structure so my flow give me no error and question Topic ask these question prompt?
I want to prompt my question like this:

Maxmellien_4-1704959490872.png


here is my PVA flow code:

kind: AdaptiveDialog
beginDialog:
  kind: OnRecognizedIntent
  id: main
  intent:
    displayName: Greeting
    includeInOnSelectIntent: false
    triggerQueries:
      - Good afternoon
      - Good morning
      - Hello
      - Hey
      - Hi

  actions:
    - kind: InvokeFlowAction
      id: invokeFlowAction_yXlaZe
      input: {}
      output:
        binding:
          json: Topic.Json

      flowId: ba806a9a-c1af-ee11-a569-6045bd006ade

    - kind: ParseValue
      id: 5Hl6ux
      variable: Topic.tableVariable
      valueType:
        kind: Table

      value: =Topic.Json

    - kind: SendActivity
      id: sendActivity_YEjvvS
      activity: "{Topic.Json}"

    - kind: Question
      id: question_BfQkGo
      interruptionPolicy:
        allowInterruption: true

      variable: init:Topic.Var1
      prompt:
      entity:
        kind: DynamicClosedListEntity
        items: =Topic.tableVariable

    - kind: CancelAllDialogs
      id: cancelAllDialogs_01At22



Thanks

Hi @Maxmellien 

 

I got it to work like this: you can see that the selected option is the full record option with all its properties.

HenryJammes_0-1704973730097.png

 

One important thing to notice with your JSON schema is that your table is within a record (under the json property).

I mocked up your returned JSON string that Power Automate returns as a variable, and then use a Parse Value and then reference the Topic.OptionsTable.json to reference the table and not the record.

Here's my example topic:

 

kind: AdaptiveDialog
beginDialog:
  kind: OnRecognizedIntent
  id: main
  intent:
    triggerQueries:
      - Dynamic Options Maxmellien

  actions:
    - kind: SetVariable
      id: setVariable_LDnSSa
      variable: Topic.JSON
      value: "{   \"json\": [     {       \"DisplayName\": \"What is your favorite color?\",       \"question\": \"What is your favorite color?\",       \"id\": 1     },     {       \"DisplayName\": \"How did you discover our services?\",       \"question\": \"How did you discover our services?\",       \"id\": 2     },     {       \"DisplayName\": \"Tell us about your experience with our products.\",       \"question\": \"Tell us about your experience with our products.\",       \"id\": 3     }   ] }"

    - kind: ParseValue
      id: z5uaRt
      variable: Topic.OptionsTable
      valueType:
        kind: Record
        properties:
          json:
            type:
              kind: Table
              properties:
                DisplayName: String
                id: Number
                question: String

      value: =Topic.JSON

    - kind: Question
      id: question_wJmTcv
      interruptionPolicy:
        allowInterruption: true

      variable: init:Topic.SelectedOption
      prompt: Please select an option
      entity:
        kind: DynamicClosedListEntity
        items: =Topic.OptionsTable.json

 

Note: I'm not sure you need to do a ParseJSON on the Power Automate side, since you also do a Parse Value on the Copilot Studio side. Returning the output body of your HTTP request directly to Copilot Studio may simplify your implementation. If that makes sense, you can also make the HTTP request directly in Copilot Studio.

 

Henry

Maxmellien
Helper I
Helper I

Hi @HenryJammes 
Thanks but little issue on my side which is as under:

when i receive json string from Power Automate then i use  parse_value and save this JSON  as record datatype  in OptionsTable  variable .
then i print both variable the first JSON string and after parse value OptionsTable  but the  OptionsTable has empty {} showing on PVA side   and Json string look like this.


 

 

This is payload coming from Power Automation:

JSON string:

{“json”:[{“DisplayName”:“What is your favorite color?”,“question”:“What is your favorite color?”,“id”:1},{“DisplayName”:“How did you discover our services?”,“question”:“How did you discover our services?”,“id”:2},{“DisplayName”:“Tell us about your experience with our products.”,“question”:“Tell us about your experience with our products.”,“id”:3}]}

OptionsTable record:

{}

 

 

and OptionsTable is not show print data.  
but when i set list variable in Question then i select Topic.OptionsTable  because json is not available after dot.
 
here is image of error showing DisplayName is missing:

Maxmellien_0-1704978907563.pngMaxmellien_1-1704978937425.png

Error:

 

 

The expression on the ‘DynamicClosedListEntityReference’ node at ‘cr52e_goodbye.topic.Goodbye/main/main/question_WxDymK’ failed because it returned ‘Record()’ when ‘RuntimeType’ was expected. Error code: ContentValidationError. Conversation ID: 8ef3c1cc-83f2-4ee2-9683-05f5fdbc41d9. Time (UTC): 1/11/2024 1:36:57 PM.

 

 

code here:

 

 

kind: AdaptiveDialog
beginDialog:
  kind: OnRecognizedIntent
  id: main
  intent:
    displayName: Greeting
    includeInOnSelectIntent: false
    triggerQueries:
      - Good afternoon
      - Good morning
      - Hello
      - Hey
      - Hi

  actions:
    - kind: SendActivity
      id: sendActivity_J3cp22
      activity: Hi , how are you

    - kind: Question
      id: question_obehfP
      interruptionPolicy:
        allowInterruption: true

      variable: init:Topic.UserCity
      prompt: Please write your favourite City Name
      entity: CityPrebuiltEntity

    - kind: InvokeFlowAction
      id: invokeFlowAction_vEQcL0
      input:
        binding:
          text: =Topic.UserCity

      output:
        binding:
          list_of accounts options: Topic.ListOfAccountsOptions
          number_of accounts: Topic.NumberofAccounts

      flowId: 7c0ebdec-76b0-ee11-a569-6045bd006ade

    - kind: ParseValue
      id: 7lUl56
      variable: Topic.table
      valueType:
        kind: Table

      value: =Topic.ListOfAccountsOptions

    - kind: SendActivity
      id: sendActivity_qoLkim
      activity: |-
        The following are the data coming from Power automate:
        
        - **ListOfAccountsOtions data in PVA**
        1. {Topic.ListOfAccountsOptions}
        - **NumberofAccounts data  in PVA**
        1. {Topic.NumberofAccounts} 

    - kind: ConditionGroup
      id: conditionGroup_5PX1Rh
      conditions:
        - id: conditionItem_ybiWsE
          condition: =Topic.NumberofAccounts = """0"""

      elseActions:
        - kind: SendActivity
          id: sendActivity_dytGRy
          activity: Ok i have found some question for you.

        - kind: Question
          id: question_st4CEA
          interruptionPolicy:
            allowInterruption: true

          variable: init:Topic.selectedQuestion
          prompt:
          entity:
            kind: DynamicClosedListEntity
            items: |-
              =ForAll(
                  Table(ParseJSON(Topic.ListOfAccountsOptions)), 
                  Text(ThisRecord.Value)
              )

        - kind: SendActivity
          id: sendActivity_EwJOrq
          activity: wow you has selected the above question it mena promt is working

    - kind: CancelAllDialogs
      id: cancelAllDialogs_01At22

 

 



2: I have also implemented you tutorial from this link  but some issues on question Topic.
PVA unified authoring canvas to display dynamic choice options

https://powerusers.microsoft.com/t5/General/How-can-I-use-Dynamic-Multi-choices-in-the-PVA-chatbot/m...

in this flow i get this ListOfAccountOption  data  as string from  Power Automation.
Incomming data printed in PVA
but i also getting error like this:

 

 

The expression on the ‘DynamicClosedListEntityReference’ node at ‘cr52e_goodbye.topic.Greeting/main/main/conditionGroup_5PX1Rh/conditionGroup_5PX1RhElseActions/question_7AqFQo’ failed with the following errors: ‘The untyped object argument to the ‘Text’ function has an incorrect type. Expected: Text, Actual: Microsoft.PowerFx.Types.ExternalType.’ (Text(ThisRecord.Value)),

‘The untyped object argument to the ‘Text’ function has an incorrect type. Expected: Text, Actual: Microsoft.PowerFx.Types.ExternalType.’ (Text(ThisRecord.Value)),

‘The untyped object argument to the ‘Text’ function has an incorrect type. Expected: Text, Actual: Microsoft.PowerFx.Types.ExternalType.’ (Text(ThisRecord.Value)). Error code: ContentValidationError. Conversation ID: e8a2c8c6-711a-46e3-81f5-40e6c89e3f0c. Time (UTC): 1/11/2024 1:41:03 PM.

 

 

Maxmellien_2-1704980577976.pngMaxmellien_3-1704980610081.pngMaxmellien_4-1704980645540.png


the following are data which i have print in message:

 

 

The following are the data coming from Power automate:

ListOfAccountsOtions data in PVA
[{“DisplayName”:“What is your favorite color?”,“question”:“What is your favorite color?”,“id”:1},{“DisplayName”:“How did you discover our services?”,“question”:“How did you discover our services?”,“id”:2},{“DisplayName”:“Tell us about your experience with our products.”,“question”:“Tell us about your experience with our products.”,“id”:3}]
NumberofAccounts data in PVA
1

 

 


Here is code:

 

 

kind: AdaptiveDialog
beginDialog:
  kind: OnRecognizedIntent
  id: main
  intent:
    displayName: Greeting
    includeInOnSelectIntent: false
    triggerQueries:
      - Good afternoon
      - Good morning
      - Hello
      - Hey
      - Hi

  actions:
    - kind: SendActivity
      id: sendActivity_J3cp22
      activity: Hi , how are you

    - kind: Question
      id: question_obehfP
      interruptionPolicy:
        allowInterruption: true

      variable: init:Topic.UserCity
      prompt: Please write your favourite City Name
      entity: CityPrebuiltEntity

    - kind: InvokeFlowAction
      id: invokeFlowAction_vEQcL0
      input:
        binding:
          text: =Topic.UserCity

      output:
        binding:
          list_of accounts options: Topic.ListOfAccountsOptions
          number_of accounts: Topic.NumberofAccounts

      flowId: 7c0ebdec-76b0-ee11-a569-6045bd006ade

    - kind: ParseValue
      id: 7lUl56
      variable: Topic.table
      valueType:
        kind: Table

      value: =Topic.ListOfAccountsOptions

    - kind: SendActivity
      id: sendActivity_qoLkim
      activity: |-
        The following are the data coming from Power automate:
        
        - **ListOfAccountsOtions data in PVA**
        1. {Topic.ListOfAccountsOptions}
        - **NumberofAccounts data  in PVA**
        1. {Topic.NumberofAccounts} 

    - kind: ConditionGroup
      id: conditionGroup_5PX1Rh
      conditions:
        - id: conditionItem_ybiWsE
          condition: =Topic.NumberofAccounts = """0"""

      elseActions:
        - kind: SendActivity
          id: sendActivity_dytGRy
          activity: Ok i have found some question for you.

        - kind: Question
          id: question_st4CEA
          interruptionPolicy:
            allowInterruption: true

          variable: init:Topic.selectedQuestion
          prompt:
          entity:
            kind: DynamicClosedListEntity
            items: |-
              =ForAll(
                  Table(ParseJSON(Topic.ListOfAccountsOptions)), 
                  Text(ThisRecord.Value)
              )

        - kind: SendActivity
          id: sendActivity_EwJOrq
          activity: wow you has selected the above question it mena promt is working

    - kind: CancelAllDialogs
      id: cancelAllDialogs_01At22

 

 

I am realy stuck from last 3 days, Please 

In your parse value node, have you tried "From sample data"?

In the JSON you shared, this is the schema you should use for the Record type:

 

kind: Record
properties:
  json:
    type:
      kind: Table
      properties:
        DisplayName: String
        id: Number
        question: String

Then you'll be able to display the .json table as part of your record variable.

Maxmellien
Helper I
Helper I

Thanks alot @HenryJammes  you saved me.
I jsut edit schema in Parse value and put you code and it worked 
Thanks once again.
Also kindly tell me the best resources to learn, for using Bot Framework SDK as currently we are facing time out issues in Power Automation so in future we will use that with PVA.

These are good signals for us to publish more "how to" articles.

We'll very likely publish them here: aka.ms/CopilotStudioGuidance

From an architecture standpoint, I recommend: aka.ms/CopilotStudioImplementationGuide

Maxmellien
Helper I
Helper I

Thank you @HenryJammes 

Maxmellien
Helper I
Helper I

Hi @HenryJammes , Hope you doing well.
I have created Fallback Flow in PVA and it show followup question with each response but the problem is if 

i donot select any option and send new text as a message the Fallback flow trigger didnot activate but instead it give me the previous response followup questions .
here is the asked question kindly slove this , i have put all code and every thing , it must trigger the event with out selecting the options which is given by list of variable in ask a Question topic.


Helpful resources

Announcements

Copilot Cookbook Challenge | Win Tickets to the Power Platform Conference

We are excited to announce the "The Copilot Cookbook Community Challenge is a great way to showcase your creativity and connect with others. Plus, you could win tickets to the Power Platform Community Conference in Las Vegas in September 2024 as an amazing bonus.   Two ways to enter: 1. Copilot Studio: https://aka.ms/CS_Copilot_Cookbook_Challenge 2. Power Apps Copilot Cookbook Gallery: https://aka.ms/PA_Copilot_Cookbook_Challenge   There will be 5 chances to qualify for the final drawing: Early Bird Entries: March 1 - June 2Week 1: June 3 - June 9Week 2: June 10 - June 16Week 3: June 17 - June 23Week 4: June 24 - June 30     At the end of each week, we will draw 5 random names from every user who has posted a qualifying Copilot Studio template, sample or demo in the Copilot Studio Cookbook or a qualifying Power Apps Copilot sample or demo in the Power Apps Copilot Cookbook. Users who are not drawn in a given week will be added to the pool for the next week. Users can qualify more than once, but no more than once per week. Four winners will be drawn at random from the total qualifying entrants. If a winner declines, we will draw again at random for the next winner.  A user will only be able to win once. If they are drawn multiple times, another user will be drawn at random. Prizes:  One Pass to the Power Platform Conference in Las Vegas, Sep. 18-20, 2024 ($1800 value, does not include travel, lodging, or any other expenses) Winners are also eligible to do a 10-minute presentation of their demo or solution in a community solutions showcase at the event. To qualify for the drawing, templates, samples or demos must be related to Copilot Studio or a Copilot feature of Power Apps, Power Automate, or Power Pages, and must demonstrate or solve a complete unique and useful business or technical problem. Power Automate and Power Pagers posts should be added to the Power Apps Cookbook. Final determination of qualifying entries is at the sole discretion of Microsoft. Weekly updates and the Final random winners will be posted in the News & Announcements section in the communities on July 29th, 2024. Did you submit entries early?  Early Bird Entries March 1 - June 2:  If you posted something in the "early bird" time frame complete this form: https://aka.ms/Copilot_Challenge_EarlyBirds if you would like to be entered in the challenge.

Updates for Copilot Studio Community | Forums & Blogs are Read Only

Get ready to experience a whole new level of engagement with the Copilot Studio Community beginning this June! We’re thrilled to announce significant enhancements to our Community Blogs and Forums, designed to foster collaboration, creativity, and connection in the Community. 🚀💡   PLEASE NOTE:  Due to the launch of the new Copilot Studio Community, Forums and Blogs will be made as read-only from May 30-June 3 and will be available on the new platform on June 3rd. If you have recently made a post in the Forums or Blogs, no worries, all of your content will be updated and available on the new platform.   What’s New? 🌟 Revamped Community Blogs: Dive into a more intuitive and enriched blogging experience, where sharing knowledge and insights is easier and more enjoyable than ever. Enhanced Forums: Engage in discussions, ask questions, and connect with peers through our improved forums, now with better navigation and user-friendly features.  Why Check It Out? ✔ Stay Informed: Keep up with the latest trends, tips, and tricks from Copilot experts and fellow community members.Expand Your Network: Connect with like-minded professionals and build lasting relationships within the community.Share Your Voice: Contribute your own stories, solutions, and successes to inspire and educate others.   Stay tuned for more details as we approach the launch date. We can’t wait for you to join us in this new chapter of the Copilot Studio Community. Together, let’s make it a hub of innovation and inspiration!   

May 2024 Community Newsletter

It's time for the May Community 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 Microsoft Power Platform and beyond.        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, follow these awesome community members to see what they do!   Power AppsPower AutomateCopilot StudioPower PagesWarrenBelzcreativeopinionExpiscornovusFubarAmikNived_NambiarPstork1OliverRodriguesmmbr1606ManishSolankiMattJimisonragavanrajantimlSudeepGhatakNZrenatoromaoLucas001iAm_ManCatAlexEncodianfernandosilvaOOlashynJmanriqueriosChriddle  BCBuizerExpiscornovus  a33ikBCBuizer  SebSDavid_MA  dpoggermannPstork1     LATEST NEWS   We saw a whole host of amazing announcements at this year's #MSBuild, so we thought we'd share with you a bite sized breakdown of the big news via blogs from Charles Lamanna, Sangya Singh, Ryan Cunningham, Kim Manis, Nirav Shah, Omar Aftab, and ✊🏾Justin Graham :   New ways of development with copilots and Microsoft Power PlatformRevolutionize the way you work with Automation and AIPower Apps is making it easier for developers to build with Microsoft Copilot and each otherCopilot in Microsoft Fabric is now generally available in Power BIUnlock new levels of productivity with Microsoft Dataverse and Microsoft Copilot StudioMicrosoft Copilot Studio: Building copilots with agent capabilitiesMicrosoft Power Pages is bringing the new standard in secure, AI-powered capabilities   If you'd like to relive some of the highlights from Microsoft Build 2024, click the image below to watch a great selection of on-demand Keynotes and sessions!         WorkLab Podcast with Charles Lamanna   Check out the latest episode of the WorkLab podcast with CVP of Business Apps and Platforms at Microsoft, Charles Lamanna, as he explains the ever-expanding evolution of Copilot, and how AI is offering new opportunities for business leaders. Grab yourself a coffee and click the image below to take a listen.       Event Recap: European Collaboration and Cloud Summits 2024   Click the image below to read a great recap by Mark Kashman about the recent European Collaboration Summit and European Cloud Summit held in Germany during May 2024. Great work everybody!       UPCOMING EVENTS European Power Platform Conference - SOLD OUT! Congrats to everyone who managed to grab a ticket for the now SOLD OUT European Power Platform Conference, which takes place in beautiful Brussels, Belgium, on 11-13th June. With a great keynote planned from Ryan Cunningham and Sangya Singh, plus expert sessions from the likes of Aaron Rendell, Amira Beldjilali, Andrew Bibby, Angeliki Patsiavou, Ben den Blanken, Cathrine Bruvold, Charles Sexton, Chloé Moreau, Chris Huntingford, Claire Edgson, Damien Bird, Emma-Claire Shaw, Gilles Pommier, Guro Faller, Henry Jammes, Hugo Bernier, Ilya Fainberg, Karen Maes, Lindsay Shelton, Mats Necker, Negar Shahbaz, Nick Doelman, Paulien Buskens, Sara Lagerquist, Tricia Sinclair, Ulrikke Akerbæk, and many more, it looks like the E in #EPPC24 stands for Epic!   Click the image below for a full run down of the exciting sessions planned, and remember, you'll need to move quickly for tickets to next year's event!       AI Community Conference - New York - Friday 21st June Check out the AI Community Conference, which takes place at the Microsoft Corporate building on Friday 21st June at 11 Times Square in New York City. Here, you'll have the opportunity to explore the latest trends and breakthroughs in AI technology alongside fellow enthusiasts and experts, with speakers on the day including Arik Kalininsky, Sherry Xu, Xinran Ma, Jared Matfess, Mihail Mateev, Andrei Khaidarov, Ruven Gotz, Nick Brattoli, Amit Vasu, and more. So, whether you're a seasoned professional or just beginning your journey into AI, click the image below to find out more about this exciting NYC event.       TechCon365 & Power Platform Conference - D.C. - August 12-16th ** EARLY BIRD TICKETS END MAY 31ST! ** Today's the perfect time to grab those early bird tickets for the D.C. TechCon365 & PWRCON Conference at the Walter E Washington Center on August 12-16th! Featuring the likes of Tamara Bredemus, Sunny Eltepu, Lindsay Shelton, Brian Alderman, Daniel Glenn, Julie Turner, Jim Novak, Laura Rogers, Microsoft MVP, John White, Jason Himmelstein, Luc Labelle, Emily Mancini, MVP, UXMC, Fabian Williams, Emma Wiehe, Amarender Peddamalku, and many more, this is the perfect event for those that want to gain invaluable insights from industry experts. Click the image below to grab your tickets today!         Power Platform Community Conference - Sept. 18-20th 2024 Check out some of the sessions already planned for the Power Platform Community Conference in Las Vegas this September. Holding all the aces we have Kristine Kolodziejski, Lisa Crosbie, Daniel Christian, Dian Taylor, Scott Durow🌈, David Yack, Michael O. and Aiden Kaskela, who will be joining the #MicrosoftCommunity for a series of high-stakes sessions! Click the image below to find out more as we go ALL-IN at #PPCC24!       For more events, click the image below to visit the Community Days website.          

Celebrating the May Super User of the Month: Laurens Martens

  @LaurensM  is an exceptional contributor to the Power Platform Community. Super Users like Laurens inspire others through their example, encouragement, and active participation. We are excited to celebrated Laurens as our Super User of the Month for May 2024.   Consistent Engagement:  He consistently engages with the community by answering forum questions, sharing insights, and providing solutions. Laurens dedication helps other users find answers and overcome challenges.   Community Expertise: As a Super User, Laurens plays a crucial role in maintaining a knowledge sharing environment. Always ensuring a positive experience for everyone.   Leadership: He shares valuable insights on community growth, engagement, and future trends. Their contributions help shape the Power Platform Community.   Congratulations, Laurens Martens, for your outstanding work! Keep inspiring others and making a difference in the community!   Keep up the fantastic work!        

Check out the Copilot Studio Cookbook today!

We are excited to announce our new Copilot Cookbook Gallery in the Copilot Studio Community. We can't wait for you to share your expertise and your experience!    Join us for an amazing opportunity where you'll be one of the first to contribute to the Copilot Cookbook—your ultimate guide to mastering Microsoft Copilot. Whether you're seeking inspiration or grappling with a challenge while crafting apps, you probably already know that Copilot Cookbook is your reliable assistant, offering a wealth of tips and tricks at your fingertips--and we want you to add your expertise. What can you "cook" up?   Click this link to get started: https://aka.ms/CS_Copilot_Cookbook_Gallery   Don't miss out on this exclusive opportunity to be one of the first in the Community to share your app creation journey with Copilot. We'll be announcing a Cookbook Challenge very soon and want to make sure you one of the first "cooks" in the kitchen.   😊Don't miss your moment--start submitting in the Copilot Cookbook Gallery today!     Thank you,  Engagement Team

Announcing Power Apps Copilot Cookbook Gallery

We are excited to share that the all-new Copilot Cookbook Gallery for Power Apps is now available in the Power Apps Community, full of tips and tricks on how to best use Microsoft Copilot as you develop and create in Power Apps. The new Copilot Cookbook is your go-to resource when you need inspiration--or when you're stuck--and aren't sure how to best partner with Copilot while creating apps.   Whether you're looking for the best prompts or just want to know about responsible AI use, visit Copilot Cookbook for regular updates you can rely on--while also serving up some of your greatest tips and tricks for the Community. Check Out the new Copilot Cookbook for Power Apps today: Copilot Cookbook - Power Platform Community.  We can't wait to see what you "cook" up!      

Top Solution Authors
Users online (2,276)