Launch URL from Sharepoint List Dropdown in PowerApps

This example is when you are using a dropdown in PowerApps and wanting to open a link that is in the list with a button.

The list will need to have the URL that you want to open in a proper format eg. “http://heresjaken.com”.

This example below assumes that you already have the Sharepoint List connected to your PowerApp.

Code:

Dropdown1.Items = Distinct(SPList, Title)

Button.OnSelect = Launch(LookUp(SPList, Dropdown1.Selected.Value = Title, Link))

The SharePoint list’s name is ‘Site Links’ you will need to replace this so that the SP List’s name is correct.
Read More →
Replies: 0 / Share:

Introduction to PowerApps

Microsoft PowerApps is a new enterprise service that empowers innovators everywhere to connect, create and share business apps with team members on any device in minutes.

PowerApps is new and still contains some bugs as it is new, but I expect that will be ironed out as time goes on.

PowerApps allows you to connect to your data with an easy to use interface.

This video will show you how to make your first PowerApp from a template and also how to navigate though the PowerApp desktop application.

You can find out more about PowerApps on http://powerapps.microsoft.com/

Read More →
Replies: 0 / Share: