Get Power BI Email Alerts for Reports and Dashboards Daily, Weekly or After Data Refresh

In Power BI, you can subscribe to reports or dashboards on a schedule or after data refresh. This is very useful if you would like to see a snapshot of the report without logging into Power BI. For example, if you want to see the leads generated each day, you can get this report sent automatically to your email. To do this, go to the report or dashboard. Click Subscribe … Continue reading Get Power BI Email Alerts for Reports and Dashboards Daily, Weekly or After Data Refresh

Dynamics 365 HTML Web Resource Example

In Dynamics 365, we can create and use HTML pages through web resources. Let’s look at how to do this. In a simple example, let’s display a Hello World from a website on the Account record. First, in Dynamics 365, go to Settings->Customizations and select either Customize the System or choose an existing Solution (or create a new one) to get to the Account form: We will select Customize the … Continue reading Dynamics 365 HTML Web Resource Example

Copying a Dynamics 365 Organization into another Org

In this post, we will look at how to copy a Dynamics 365 instance into a sandbox instance. For example, you may have a production environment with production data and customizations that you would like to copy down to a development instance. In our case, we have Contoso, which is our production organization, and Contoso DEV, our development org. We will select Contoso to copy from. You will see the … Continue reading Copying a Dynamics 365 Organization into another Org

Updating Dynamics 365 Records using Export and Import with Excel

Following on from a previous example, we can use Excel to update records in Dynamics 365 by exporting the records to an Excel file. To do this, select the records you would like to export in Advanced Find: Export:   Open the downloaded spreadsheet and make an update to an account: Save the Excel file. Create a new Import in Dynamics 365 under Data Management->Imports: Select No to Allow Duplicates: … Continue reading Updating Dynamics 365 Records using Export and Import with Excel

How to Copy Records from One Dynamics 365 Org to Another using Export and Import

A simple way to copy data from one Dynamics 365 organization to another is to use the export and import functionality. Let’s say we have created some new accounts in the source system. We will create an advanced find to show us accounts created today so we can export them: Click Export Accounts: Export to Static Worksheet: This will download an xlsx spreadsheet. Open the file: Optionally, click on the … Continue reading How to Copy Records from One Dynamics 365 Org to Another using Export and Import

Creating a GitHub Wiki Documentation for Your Repository

In this post, we will look at how to create wiki documentation for your GitHub repository. This can be very useful to document your GitHub code. Let’s go through an example. Go to a GitHub repository, and in the menu you should see Wiki: Click Create the First Page: You should see something like below: We see the title of the page is Home, and it has some basic test. Let’s … Continue reading Creating a GitHub Wiki Documentation for Your Repository

Retrieve and RetrieveMultiple JavaScript using Xrm.WebApi

Let’s look at how to use Retrieve and RetrieveMultiple using JavaScript and the Xrm.WebApi. Consider the scenario where we have an account: We can run this code in browser debugger. Hit F12 and let’s run this code: [sourcecode language=”JavaScript”] var Entity = "account"; var Id = "d2720425-53ad-43c3-b9dc-e7452b80ae13"; var Select = "?$select=name"; Xrm.WebApi.retrieveRecord(Entity, Id, Select).then( function success(result) { console.log("Success: " + result.name); }, function (error) { console.log(error.message); } ); [/sourcecode] We … Continue reading Retrieve and RetrieveMultiple JavaScript using Xrm.WebApi

Using Sample Datasets Installed in R

R has built-in datasets which can be useful for learning R. Let’s take a look at these. From RGui, let’s see the packages installed by going to Load package: We can see datsets and MASS are installed: From RStudio we can see the same thing: We can use datasets right away as the library is loaded. In RGui or RStudio, type in: data() This will display the datasets installed in the … Continue reading Using Sample Datasets Installed in R

You are not a member of this organization in Dynamics 365

In Dynamics 365, you may get the message “You are not a member of this organization.You do not belong to the organization. Verify the organization name and try to sign in again“. If a user gets this message, confirm they have a license for Dynamics 365. Go to the Microsoft admin portal at https://admin.microsoft.com: Ensure the right licenses have been assigned for Dynamics 365, for example: Then log into the … Continue reading You are not a member of this organization in Dynamics 365

Install nvm Node Version Manager on Windows

To install Node Version Manager or nvm on Windows do the following. First, go to https://github.com/coreybutler/nvm-windows/releases and select the nvm-setup.zip file: You will see: Unblock and extract the zip file: Click Install: As Node.js is already installed, I get this message: Click Finish: Now, open a command prompt and type: nvm version You should see the version number of nvm, confirming the installation worked: