Power Apps is a suite of apps, services, connectors, and data platforms that provide a rapid application development environment to build custom apps for your business needs. More Details https://docs.microsoft.com/en-us/powerapps/powerapps-overview.
Power Fx is the low-code language that will be used across the Microsoft Power Platform. It's a general-purpose, strong-typed, declarative, and functional programming language.
The Download function downloads a file from the web to the local device. When used on the web, the Download is dependent on the browser's settings to determine what happens with the file. For images, videos, PDFs, and other file types that the browser natively supports, a new browser tab is opened to display the file. Many browsers support saving the contents to the local file system. The General syntax is Download( Address )
By reading this article, you can learn how to perform the Download function from Power Fx using Microsoft Power Apps. Also, you will be able to learn Text Box and Label control in the Power Apps environment.
Step 1. Open the URL https://powerapps.microsoft.com/en-us/ in the browser for Power Apps.
Create an account with your Organisation Mail ID and log in after logging into your Power Apps account.
![Power apps]()
Step 2. First, click Create (+ ), select Start with Page Design, and select Blank Canvas.
![Page Design]()
![Default directory]()
Step 3. To test the power function, first rename the screen PADSCR.
![PADSCR]()
Next, insert a Label control and set the Name and Text property as LblTitle and “Download function in PowerFx using canvas App with Power apps”.
![PowerFx]()
Next, insert a Label control and set the Name and Text property as LblLink and “Enter the Link to be Download.
![LblLink]()
Next, insert a TextBox control and set the Name property as TxtLink.
![TxtLink]()
Insert a Button control and set the Name property as Download and Onselect property as Download(TxtLink.Text).
![Onselect property]()
Finally, save the App with the name PADDld, and the form design looks like below.
![PADDld]()
Step 4. Now we can see the preview of your App in Power Apps Studio and the output of the PADDld.
The Browser Display is,
![Browser Display]()
The Apple iPhone Display is,
![Apple iPhone Display]()
The Tablet Display is,
![Tablet Display]()
After entering the address https://1drv.ms/b/c/c7993f182dc1203c/EchwW9maUAJGnRz2Bo9GqskBrSaDo48sMpmD60-alvVUoQ?e=v1DQyw and clicking the Download button.
![Download button]()
A new window with the PDF file is opened.
![New window]()
![One drive]()
Now, you have successfully tested the Power Fx – Download function in the Power Apps Studio environment.