How to Implement JavaScript Confirmation Dialogs in Power Apps and Dynamics 365

In Power Apps and Dynamics 365, you may need to display a dialog to a user in order to decide which piece of code to run next. We can do this using the command Xrm.Navigation.openConfirmDialog. Let’s look at how to do this from a model-driven Power App. Go to the app and open the Console in your browser’s developer tools. The function takes the following parameters: Xrm.Navigation.openConfirmDialog(confirmStrings,confirmOptions).then(successCallback,errorCallback); Let’s start with … Continue reading How to Implement JavaScript Confirmation Dialogs in Power Apps and Dynamics 365

Accept all Defaults with npm init -y

npm init prompts you for each attribute of your package.json. Pressing enter on each line means the text in brackets will be used: This produces a package.json file like below: Or, you can accept all defaults automatically with: npm init -y The package.json looks like:  

How to Install Postman for Windows

The Postman Chrome extension is being deprecated and replaced with Postman for Windows. To install it, head over to https://www.getpostman.com/downloads/ and click Download: We will download the Windows 64-bit app. Click to open the exe: From here, the Windows app will install and open:  

Installing Microsoft Flow Addin for Excel and Selected Row Email Demo

In this post, we will look at how to install and use the Microsoft Flow Add-In for Excel. First, open Excel and go to Office Add-Ins, then select Microsoft Flow for Excel (Preview). Click Add: You will see: The Add-in is now ready to use. Let’s create a new spreadsheet, Customers, with a column for the Customers, and we will make this selection a table by highlighting then selecting Table … Continue reading Installing Microsoft Flow Addin for Excel and Selected Row Email Demo

Enabling the 2019 Release Wave 2 Preview in the Power Platform

To enable your Org to use the 2019 Release Wave 2 Preview, log into https://admin.powerplatform.microsoft.com/ and select your org: On the right in Updates, click Manage: You will see: 2019 release wave 2 Update now and your end users get new features in: PowerApps and Platform Dynamics 365 Sales Dynamics 365 Customer Service Dynamics 365 Marketing All updates will happen at once. Note this cannot be undone. Click Update Now: Enter the … Continue reading Enabling the 2019 Release Wave 2 Preview in the Power Platform

Embedding and Viewing an AI Builder Model in PowerApps and Dynamics 365

In our last post, we created a Binary Classification model using the AI Builder in Microsoft PowerApps. In this post, we will continue the example and embed the results in a PowerApp / Dynamics 365 so users can view these results. First, select the AI Model and in the bottom, click Publish: This will publish the model: Once complete, the model will show as “Live”: Now, let’s add this to … Continue reading Embedding and Viewing an AI Builder Model in PowerApps and Dynamics 365

Using the AI Builder in the Microsoft Power Platform for Binary Classification

In this post, we will look at how to use the AI Builder for PowerApps and Dynamics 365 to predict an outcome in the Microsoft Power Platform. Note at the time of writing this is Preview functionality. The AI Builder is an Artificial Intelligence feature of the Microsoft Power Platform that is used to perform AI functionality. In this post, we will look at a Binary Classification example. First, go … Continue reading Using the AI Builder in the Microsoft Power Platform for Binary Classification

Create Database vs Don’t Create Database in Model-Driven Power Apps

When creating model-driven Power Apps, you will be presented with an option if you would like to create a database or not. Let’s create a new app and see how this option works. First, sign in to the Power Apps admin portal at https://admin.powerplatform.microsoft.com/environments: and create a new environment with a database: Enter an environment name. We will call it CreateDatabaseOrg and select Yes to Create a database for this environment: … Continue reading Create Database vs Don’t Create Database in Model-Driven Power Apps

How to Use Azure Notebooks Hello World

Azure Notebooks are Jupyter notebooks running on Azure, which is great as users don’t need to install any software locally, and it comes with other cool features as well. To access Notebooks, go to https://notebooks.azure.com/ and sign in: You will be prompted to create a user id. Enter one and click Save: You will see below: Let’s click on Create a New Project, called Hello World. Note the option to make this … Continue reading How to Use Azure Notebooks Hello World

Jupyter Notebook Installing and Hello World on Windows

In a previous post, we looked at installing Python on Windows. In this post, we will install Jupyter Notebook running Python 3. To do this, open a command prompt and type: py -m pip install jupyter This will install the packages required for Jupyter: You will see something like below when complete: Now, to run Jupyter, run the command: py -m notebook This will launch a web browser with Jupyter … Continue reading Jupyter Notebook Installing and Hello World on Windows