- 18
- 26 788
PowerApp Wizard
India
เข้าร่วมเมื่อ 25 มี.ค. 2023
This channel will help you learn and overcome many business challenges you may face while using PowerApps (or) Power Platform
How to Create a Custom Connector with API Key in Power Apps | Weather Forecast Demo
Learn how to create a custom connector in Power Apps using an API key to fetch weather forecasts. This step-by-step tutorial guides you through the process of setting up the connector, configuring the API key, and integrating weather data into your Power Apps application. Perfect for beginners and professionals alike who want to enhance their Power Apps projects with real-time data!
In this video, you'll learn:
How to set up a custom connector in Power Apps.
How to configure and use an API key for external APIs.
How to fetch and display weather forecasts in your app.
📌 Don't forget to like, comment, and subscribe for more Power Apps tutorials!
In this video, you'll learn:
How to set up a custom connector in Power Apps.
How to configure and use an API key for external APIs.
How to fetch and display weather forecasts in your app.
📌 Don't forget to like, comment, and subscribe for more Power Apps tutorials!
มุมมอง: 35
วีดีโอ
Power Apps Learning Day 1: Exploring Canvas App Navigation Items
มุมมอง 18328 วันที่ผ่านมา
Welcome to Day 1 of our Power Apps Learning series! 🎉 In this video, we dive into the basics of Canvas Apps and explore all the navigation items available within the Power Apps Studio. Learn how to efficiently use navigation menus such as Screens, Controls, Data Sources, Media, and Advanced Properties to build dynamic apps with ease. Whether you're a beginner or looking to refresh your skills, ...
Power Apps: Low-Code Made Simple for Non-Coders | Learn Fast!
มุมมอง 16หลายเดือนก่อน
Discover how Power Apps empowers graduate students to create powerful applications with little to no coding knowledge! 🎓 Whether you're a tech enthusiast or someone with minimal interest in coding, this low-code/no-code platform offers an easy, intuitive way to build apps and automate processes. Watch this video to see how you can kickstart your journey into app development without diving into ...
How to Enable Full Screen View in Power Apps | Step-by-Step Guide
มุมมอง 219หลายเดือนก่อน
Looking to make your Power App more immersive? Learn how to enable the full-screen view in Power Apps for a seamless user experience. This tutorial walks you through the process of setting up and optimizing your app for full-screen mode, perfect for dashboards, forms, and more. Whether you're a beginner or an experienced user, this guide will help you enhance the visual impact of your apps. 🔹 C...
Step-by-Step Guide: Moving Power Apps Solutions Between Environments
มุมมอง 9992 หลายเดือนก่อน
In this video, I’ll walk you through the process of creating a solution in Power Platform and how to deploy it seamlessly across different environments, all without registering the application in Azure! Whether you’re working in development, testing, or production, this step-by-step guide will help you understand the export and import process, ensuring smooth transitions between environments. Y...
How to Create a Custom Pop-Up in PowerApps | Step-by-Step Tutorial
มุมมอง 2023 หลายเดือนก่อน
Looking to enhance your PowerApps experience with a dynamic pop-up? 💡 In this tutorial, I’ll show you step-by-step how to create a custom pop-up in PowerApps using conditional visibility and actions. Whether you want to display important messages, gather user input, or improve app navigation, I’ve got you covered! 🚀 By the end of this video, you'll know how to create a fully functional pop-up t...
Looking to add a People Picker in PowerApps?
มุมมอง 4723 หลายเดือนก่อน
Looking to add a People Picker in PowerApps? 🎯 In this video, we’ll show you how to transform the ComboBox control into a fully functional People Picker that allows users to search and select people from your organization’s directory! 👥✨ 🔧 What you'll learn: Setting up a ComboBox control to fetch and display user profiles. Connecting the Office365Users connector to pull user information. Custom...
Extend Microsoft Power Platform with custom APIs
มุมมอง 156ปีที่แล้ว
Create custom APIs with Microsoft Power Platform, connecting with hundreds of other industry-standard apps to create an end-to-end business solution.
Body Part Selection UI on PowerApps
มุมมอง 96ปีที่แล้ว
PFB link to import the application powerusers.microsoft.com/t5/Community-App-Samples/Body-Part-Selection-UI-on-PowerApps/td-p/1821410
Add AI features to your apps quickly - PowerApps
มุมมอง 45ปีที่แล้ว
This video demonstrates on how and when do we need AI features to be integrated in our PowerApp applications.
Why PowerApps ?
มุมมอง 23ปีที่แล้ว
This Video Illustrates, why powerapps should be used in current world.
Dataverse Environment Security Management Tool
มุมมอง 130ปีที่แล้ว
Please follow the steps described in the link below: Link to Integrate: github.com/microsoft/powerapps-tools/tree/master/Apps/Security Management - Canvas App
Power Apps Code Review Tool
มุมมอง 998ปีที่แล้ว
Link: github.com/microsoft/powerapps-tools/tree/master/Tools/Apps/Microsoft.PowerApps.CodeReview Prerequisites to Implement: 1. Enable PCF Component in Admin Center 2. Latest version of Code Review Tool has been redesigned using Power CAT Creator Kit. As a prerequisite install the Power CAT Creator Kit core solution in your target environment by following below instructions. 3. Download the 'Po...
Worked for me, thanks!
Very helpful video
try using combobox (modern controls) and tell me if u can do it XD
Yes ! you can do it in the same way 🙂
Please how do you submit attachments that isn't part of a form to a data source just like you got it in this video ?
we can use Power Automate. Add an instant power app trigger to your flow and except the inputs from power apps. Pass the attachment in form of binary data and you can use parse the json in the flow.
@@PowerAppWizard-xl3ow okay. I thought we could patch the attachment as a record to a sharepoint list. That's exactly my challenge
if anyone wants send email as attachment on submit button below is the code and thanks me later. If( IsBlank(InputSubject.Text), UpdateContext({ showSubjectError: true }), UpdateContext({ showSubjectError: false }) ); If( IsBlank(DropdownPriority.Selected.Value), UpdateContext({ showPriorityError: true }), UpdateContext({ showPriorityError: false }) ); If( IsBlank(InputDetail.Text), UpdateContext({ showDetailError: true }), UpdateContext({ showDetailError: false }) ); If( !IsBlank(InputSubject.Text) && !IsBlank(DropdownPriority.Selected.Value) && !IsBlank(InputDetail.Text), // Check if there are any attachments If( !IsBlank(DataCardValue9_1.Attachments), // Send email with attachments Office365Outlook.SendEmailV2( "test@emailaddress.com", InputSubject.Text, "Priority: " & DropdownPriority.Selected.Value & "<br><br>" & "Details: " & InputDetail.Text, { IsHtml: true, Attachments: ForAll( DataCardValue9_1.Attachments, { Name: ThisRecord.Name, // Correct field for file name ContentBytes: ThisRecord.Value, // Correct field for file content '@odata.type': "" // Required for correct formatting } ) } ), // Send email without attachments if no attachments are present Office365Outlook.SendEmailV2( "test@emailaddress.com", InputSubject.Text, "Priority: " & DropdownPriority.Selected.Value & "<br><br>" & "Details: " & InputDetail.Text, { IsHtml: true } ) ); // Reset the fields Reset(InputSubject); Reset(DropdownPriority); Reset(InputDetail); Reset(DataCardValue9_1); // Reset the attachment control // Navigate to Screen3 Navigate(Screen3, ScreenTransition.None) )
Nice explanation
Are the documents saved sharepoint list?
It depends we can save either in SharePoint document library or One drive too
Sir.... you are a genius ! It has been hours trying to mimic an attachment control in power apps, and you gave me the answer to trick power apps. Genius!!!!!!!!!!!!!!!!!!!
It would have been nice if you showed us the microsoft list you used.
you can use any SharePoint list, I have picked a random list too for the example
The options do not longer exist, right? or it's only my PowerApps version?
Can you make a video for the patch code? I'm not understanding your reply below. Please and thank you.
Please show patch code in the submit button
To Patch it using submit button we can create a collection for Ex: ClearCollect(TestColl, DateCardValue2.Attachments) and then pass the details in json format to Power Automate for adding attachments to the item. Ex: PowerAutomate.Run(ForAll(TestColl,JSONFormat.IncludeBinary))