Learn Microsoft AI
119 TopicsMicrosoft Learning Rooms Weekly Roundup 9/24
Below is a summary of what is happening within our Learning Rooms (Groups) so that you can stay in the loop and discover something new. To get frequent updates of their content you must follow/join the group that interests you. Make sure to join one of our Learning Rooms (Groups) today! Learning Room (Group) Details Date/Time Link to discussion/event/blog Microsoft Fabric Café Event: Introduction to Version Control, GIT, and Power BI Developer Mode Saturday, Sep 27, 2025, 07:00 AM PDT Introduction to Version Control, GIT, and Power BI Developer Mode | Microsoft Community Hub Microsoft Hero Community Event: Automating Sentinel Triage with Microsoft Security Copilot Monday, Sep 29, 2025, 12:00 AM PDT Automating Sentinel Triage with Microsoft Security Copilot | Microsoft Community Hub Microsoft Tech Talks Event: She Powers BI – Women’s DIY Mentorship Cohort 🌸 Monday, Oct 06, 2025, 08:30 AM PDT She Powers BI – Women’s DIY Mentorship Cohort 🌸 | Microsoft Community Hub Azure Cloud Commanders Event: The Integrated World of Microsoft Cloud Frameworks Tuesday, Oct 07, 2025, 06:00 PM PDT The Integrated World of Microsoft Cloud Frameworks | Microsoft Community Hub Azure Cloud Commanders Event: Security Best Practices for Azure Kubernetes Services (AKS) Monday, Oct 20, 2025, 12:00 PM PDT Security Best Practices for Azure Kubernetes Services (AKS) | Microsoft Community Hub Azure Cloud Commanders Event: ASO(cial) Superpowers: Streamlined App Deployments with Azure Service Operator Thursday, Oct 23, 2025, 11:00 AM PDT ASO(cial) Superpowers: Streamlined App Deployments with Azure Service Operator | Microsoft Community Hub Azure Cloud Commanders Event: Mastering Full Stack with Azure: Effortless Infrastructure and Well-Architected Framework Sunday, Nov 02, 2025, 08:00 PM PST Mastering Full Stack with Azure: Effortless Infrastructure and Well-Architected Framework | Microsoft Community Hub SkillUp with Copilot Studio & Power Platform Blog post: Power Apps Code Apps(Preview) を利用して Single Page Application を開発 Power Apps Code Apps(Preview) を利用して Single Page Application を開発 | Microsoft Community Hub SkillUp with Copilot Studio & Power Platform Knowledge base: 2025 Microsoft Virtual Training Days 2025年10月 - Microsoft Virtual Training Days 開催情報 | Microsoft Community Hub Microsoft Fabric Café Discussion: [RECORDING] – From Stream to Screen: Real-Time Intelligence in Microsoft Fabric [RECORDING] – From Stream to Screen: Real-Time Intelligence in Microsoft Fabric | Microsoft Community Hub Microsoft Hero Community September Calendar is HERE! September Calendar IS HERE! | Microsoft Community Hub39Views1like0CommentsWelcome to the Microsoft Learn community
Welcome to the official community and blog for Microsoft Learn! Microsoft Learn offers a comprehensive collection of training options that empower technical professionals to learn in a style that fits best, allowing you to advance your technical skills while earning achievements and/or preparing for Microsoft Certifications. Join us for updates on training and certification news as well as conversation with the community around learning, training, and certification! This is not the appropriate place for product questions. Do you have questions about Microsoft Teams, Excel, Azure, Windows 10, or another product? Check out our list of communities and you're bound to find the appropriate community to ask your question. This is also not the place for certification support. Please contact Certification Support if you are having issues with registering for an exam, profile issues, missing certification etc. If you're looking to ask a question or start a conversation about Microsoft Learn, which paths to take, what certification to explore next, you're in the right place! Ask away.79KViews170likes134CommentsDynamic Adaptive Cards
Hello, I'm a teacher and currently trying to build a co-pilot agent for self assessment of an exam or many exams. Therefore I build a Sharepoint list with all the competences for every exam (or more likely going to). With the help of a flow I create a code for an adaptive card. Now I use this flow in a copilot agent to create an adaptive card in a conversation, where the student can do the self assessment. So far I was able to show the adaptive card as I want to but struggling to get the answers of the user. Because I don't create the adaptive card in the topic on it's own but use the output of the flow as a variable, I think some things get a bit more complicated (please correct me if I'm wrong) This would be a part of the JSON of my adaptive card, which I create through the flow. And again the competences are different depending on the exam, so I will always have different id's and I don't know how to handle this. (I cut off some of the items.) { "$schema": "http://adaptivecards.io/schemas/adaptive-card.json", "type": "AdaptiveCard", "version": "1.5", "actions": [ { "type": "Action.Submit", "id": "submitSelfAssessment", "title": "Antworten senden", "data": { "action": "submitSelfAssessment", "examId": "Klausur_Vektorrechnung" }, "associatedInputs": "auto" } ], "body": [ { "type": "TextBlock", "text": "Selbsteinschätzung - Klausur_Vektorrechnung", "weight": "Bolder", "size": "Large" }, { "type": "Container", "style": "emphasis", "items": [ { "type": "TextBlock", "text": "Koordinatensysteme", "weight": "Bolder" }, { "type": "Input.ChoiceSet", "id": "ans_Koordinatensysteme_Zeichnen", "style": "expanded", "label": "Zeichnen von einem dreidimensionalen Koordinatensystem. ", "choices": [ { "title": "Sehr unsicher", "value": "1" }, { "title": "Eher unsicher", "value": "2" }, { "title": "Mittel", "value": "3" }, { "title": "Eher sicher", "value": "4" }, { "title": "Sehr sicher", "value": "5" } ], "isMultiSelect": false, "wrap": true }, { "type": "Input.ChoiceSet", "id": "ans_Koordinatensysteme_Punkte", "style": "expanded", "label": "Ich kann Punkte in ein Koordinatensystem eintragen und die Koordinaten richtig ablesen. ", "choices": [ { "title": "Sehr unsicher", "value": "1" }, { "title": "Eher unsicher", "value": "2" }, { "title": "Mittel", "value": "3" }, { "title": "Eher sicher", "value": "4" }, { "title": "Sehr sicher", "value": "5" } ], "isMultiSelect": false, "wrap": true }, { "type": "Input.ChoiceSet", "id": "ans_Koordinatensysteme_AbstandMittelpunkt", "style": "expanded", "label": "Ich kann Abstände und Mittelpunkte berechnen", "choices": [ { "title": "Sehr unsicher", "value": "1" }, { "title": "Eher unsicher", "value": "2" }, { "title": "Mittel", "value": "3" }, { "title": "Eher sicher", "value": "4" }, { "title": "Sehr sicher", "value": "5" } ], "isMultiSelect": false, "wrap": true } ] }, { "type": "Container", "style": "emphasis", "items": [ { "type": "TextBlock", "text": "Vektoren", "weight": "Bolder" }, { "type": "Input.ChoiceSet", "id": "ans_Vektoren_Definition", "style": "expanded", "label": "Ich kenne die Definition des Begriffes Vektor und kann den Unterschied zu Pfeilen erklären. ", "choices": [ { "title": "Sehr unsicher", "value": "1" }, { "title": "Eher unsicher", "value": "2" }, { "title": "Mittel", "value": "3" }, { "title": "Eher sicher", "value": "4" }, { "title": "Sehr sicher", "value": "5" } ], "isMultiSelect": false, "wrap": true }, I put this into the adaptive card with the expression. Topic.karte is the name of the output variable of the flow. It has the string Version of the code above. And it seems to work, because I can see the adaptive card in the chat. JSON(ParseJSON(Topic.karte)) But now I have no clue how I can get the answers of the self assessment. I created an output: kind: Record properties: Output: type: kind: Record Now I created a message with the expression: JSON(Topic.Output) The message I get is zero. So my conclusion is that it doesn't safe the output correctly. But I have no clue how to fix it or where the actual problem is. So I would be really thankful for any help or advice or some link where I can get some help. And if I did something really stupid, please be gentle to me, I'm just a teacher :D Best regards54Views0likes0Commentsmicrosoft learn programe
I also take courses on Microsoft Learn. In the videos and written tutorials, they explain how to do certain things — for example, in Power Automate. But often, the version of the program I have on my PC is not the same as the one shown in the videos or instructions. This makes learning difficult. It would be very helpful if Microsoft Learn clearly indicated which version of the software is being used in each tutorial or video.45Views0likes0CommentsCopilote + Machine Learning
Hello, my name is Benoit Chevalier. I’m someone who struggles with writing and often makes many mistakes. Copilot has been a huge help for me in writing professional letters and documents. I’ve noticed that more and more websites are integrating their own chatboxes or artificial intelligence into their platforms. Personally, I have difficulty with both writing and reading. Copilot helps me correct my texts and understand content that I find hard to read. For example, I can ask it to translate texts into French or explain complex information. However, I’ve noticed that many chatboxes and websites are only available in English. It would be very helpful to have the option to view everything in French, even if the original site was written in another language. Finally, I’d like to share an idea: integrating a personalized digital fingerprint using machine learning. This fingerprint could recognize the user no matter where they are — on their PC or elsewhere — and automatically adapt the experience (language, preferences, accessibility). This would be especially useful for people with specific needs like mine. Thank you for reading, Benoit Chevalier46Views0likes0CommentsStruggling to have values appear as "Yes" or "no" for > or < numbers
Hey guys, I am trying to create a stocktake sheet in which is smart enough to tell me after stocktake if I require to order items. I understand how to create the cells to be reactive to numbers >8 turn green and numbers <9 turn red to indicate they are getting low. I am looking to have these state "Yes" and "No" Under the Order column. Is this possible, if so could you please let me know the function/equation in which does this? Thank you in advance!64Views0likes0Comments