Book Image

Learn Microsoft PowerApps

By : Matthew Weston
Book Image

Learn Microsoft PowerApps

By: Matthew Weston

Overview of this book

Microsoft PowerApps provides a modern approach to building business applications for mobile, tablet, and browser. Learn Microsoft PowerApps will guide you in creating powerful and productive apps that will add value to your organization by helping you transform old and inefficient processes and workflows. Starting with an introduction to PowerApps, this book will help you set up and configure your first application. You’ll explore a variety of built-in templates and understand the key difference between types of applications such as canvas and model-driven apps, which are used to create apps for specific business scenarios. In addition to this, you’ll learn how to generate and integrate apps directly with SharePoint, and gain an understanding of PowerApps key components such as connectors and formulas. As you advance, you’ll be able to use various controls and data sources, including technologies such as GPS, and combine them to create an iterative app. Finally, the book will help you understand how PowerApps can use several Microsoft Power Automate and Azure functionalities to improve your applications. By the end of this PowerApps book, you’ll be ready to confidently develop lightweight business applications with minimal code.
Table of Contents (25 chapters)
Free Chapter
1
Section 1: Getting Started with PowerApps
6
Section 2: Developing Your PowerApp
11
Section 3: Extending the Capabilities of Your PowerApp
18
Section 4: Working with Model-Driven Apps
21
Section 5: Governing PowerApps

Interacting with text

The most common type of data that you will be working with is text, also commonly known as a string. Textual data can take the format of a combination of alphanumeric characters. There are several basic functions that we can use to work with textual data.

First of all, if we wish to cast a value (convert numbers, dates, and time to text), then we can use the Text function:

Text(<the value you wish to cast here>)

If you are inserting input into your app that contains tags, for example, HTML or XML, then you may wish to use PlainText (shown in Figure 6.5: Demonstration of HTML being removed from a string) to strip out all of the tags so that you are then able to work with a plaintext value:

Figure 6.5: Demonstration of HTML being removed from a string

Once you are working with a string of text, especially if you've had to convert it from another data type, you can then start to use the other functions that are available to you. The most common actions that...