Introduction Microsoft introduced Customer Voice in 2020 to get feedback from customers and save it into Customer voice entities in Dynamics 365 CRM. Further, they also introduced new features in Customer voice. Recently, I was setting up Customer Voice and creating its invitations using Power Automate Flow. Here, I came across an error when I… READ MORE
What’s The Problem We’re Solving? We want our apps to look natural and only have 1 scroll bar, we want to avoid nested scrollbars because our users hate them and find them confusing. Let’s dynamically get the height of our galleries to help our users! What’s The Solution? https://youtube.com/watch?v=-Jb-HW-sqKQ%3Fcontrols%3D1%26rel%3D0%26playsinline%3D0%26modestbranding%3D0%26autoplay%3D0%26enablejsapi%3D1%26origin%3Dhttps%253A%252F%252Ftheloadingpoint.com%26widgetid%3D1 Let’s dynamically calculate the height of the… READ MORE
I am back with another blog on Canvas apps and this time it’s about on how to write nested loops inside Power Apps canvas apps. However if you are having this requirement, the blog might just be the time saver for you. So let’s get started. How do we write For loops inside Canvas apps?… READ MORE
Are you effectively managing your Microsoft 365 evergreen change? The pace of change in Microsoft 365 is rapid as Microsoft constantly delivers new features, updates to enhance customer value and ways to better secure the environment. We all know it is important to keep on top of this constant flow of changes, but keeping track… READ MORE
Content type x-www-form-urlencoded is used generally to send text data in a query string in the form of name value pairs separated by ampersand. In this blog post, let us see how to use the content-type x-www-form-urlencoded in a Power Automate custom connector. Refer to this post, if you would like to find out how to… READ MORE
What you’ll find here I wanted an exhaustive list (to be updated in future with updates) of SharePoint List or Microsoft List Column Formatting options, examples from this GitHub page. It allows to format a SharePoint Online or SharePoint 2019 list or document library using some JSON code. For SharePoint 2019, there are limitation and few things… READ MORE
Why do I need to build a Teams creation process using Power Automate? What’s wrong with the standard Team creation process? Well when you create Microsoft Teams out of the box there are only limited governance capabilities. For example: Limited Teams naming standard Teams with duplicate display names can be created Only one owner is… READ MORE
In this post, let’s have a look at how to send user Notifications using Azure Functions SignalR Service output binding. I already have an Azure SignalR Service and Azure Function setup. My client app is an Angular application. In my Azure Function, I have the Negotiate function as follows. public static class NegotiateFunction { [FunctionName(FunctionNames.Negotiate)] public static SignalRConnectionInfo Run( [HttpTrigger(AuthorizationLevel.Function, “get”, “post”, Route = null)] HttpRequest request, [SignalRConnectionInfo( HubName = “%SignalR_HubName%”, UserId = “{headers.x-application-user-id}”, ConnectionStringSetting = “SignalR_ConnectionString”)] SignalRConnectionInfo connectionInfo)… READ MORE