Power BI – DAX – RELATED

…fields based on the relationship. Now, we will drag this new calculated column onto our report. You can see, the new calculated column contains data from the Goal field.  …

Using ExecuteMultiple C# in Dynamics 365

…CrmServiceClient(connectionString); IOrganizationService service; service = (IOrganizationService)conn.OrganizationWebProxyClient != null ? (IOrganizationService)conn.OrganizationWebProxyClient : (IOrganizationService)conn.OrganizationServiceProxy; var request = new ExecuteMultipleRequest() { Requests = new OrganizationRequestCollection(), Settings = new ExecuteMultipleSettings { ContinueOnError = false,…

Display Power BI Tiles in Microsoft CRM

…users you would like to share the dashboard with:   Once complete, users will be able to view the Power BI data in Microsoft CRM using the new Tiles functionality….

Building An Azure Cognitive Services Face App – Part 3 – People, Groups and Persisted Faces

…baseUri = “https://yourregion.api.cognitive.microsoft.com/”; private readonly IFaceClient faceClient = new FaceClient( new ApiKeyServiceClientCredentials(subscriptionKey), new System.Net.Http.DelegatingHandler[] { }); IList<DetectedFace> faceList; String[] faceDescriptions; double resizeFactor; public MainWindow() { InitializeComponent(); faceClient.Endpoint = baseUri; }…

Dynamics CRM SQL Reports

…a new Visual Studio project. Add a new report using the report wizard. Set the type to Microsoft SQL Server and the connection string to the CRM organization database: Select…