Tag: Power Automate

Power Platform - Aggregate data using FetchXml | Blog
Power Platform – Aggregate data using FetchXml | Blog
Blog Posts

I’ve been finding that many developers I meet are not familiar with all of the powerful functionality available when querying Dataverse. One of the features is the ability to aggregate data when fetching it using FetchXml. This can be particularly useful in situations when you want to reduce the logic needed inside your automation & offload the heavy… READ MORE

How To Send Emails From Power Apps
How To Send Emails From Power Apps
Blog Posts

All properties covered in this comprehensive guide A common pattern is to use Power Automate to send automated emails. We may do this on a schedule or when something happens – for example, when an item is added or edited in a SharePoint list. But there may be circumstances where you’ll want to ignore Power Automate… READ MORE

Making a Power App that makes Flows
Making a Power App that makes Flows
Blog Posts

So I saw an amazing video a while back about how a Power App could create another Power App. It showed how Power Fx could create Yaml code that when pasted in created a Power App component. And I thought, well that’s not creating a app, its creating parts of an app, so I wanted… READ MORE

Hidden Talents to Citizen Development (and Beyond): Leveraging Diverse Skills in Your Career
Hidden Talents to Citizen Development (and Beyond): Leveraging Diverse Skills in Your Career
Webinars

Webinar Description: This session explores how individuals can leverage their everyday skills to excel in citizen development on the Power Platform. Participants will learn to apply non-technical talents—such as project management, teaching, data analysis, and creative arts—to build impactful solutions using Power Apps, Power Automate, and Power BI. Through storytelling, real-life examples, and practical exercises,… READ MORE

Extending Microsoft 365 with Advanced Business Workflows
Extending Microsoft 365 with Advanced Business Workflows
How Tos

Extending Microsoft 365 with Advanced Business Workflows Learn how to expand the capabilities of #Microsoft365 by integrating Nutrient Workflow Automation Platform with #SharePoint, #PowerAutomate, and Slack. This video offers a detailed walkthrough on building an advanced automated workflow in Power Automate: using Microsoft AI Builder to extract data from invoices, sending the invoice form to… READ MORE

Is something out of reach? PowerFX Traverse the Dataverse
Is something out of reach? PowerFX Traverse the Dataverse
Blog Posts

I’m going to share a simple tip that I’ve been finding very useful. Formula columns using PowerFX allow you to traverse the dataverse and pull information from several degrees of separation away. Often there are tools available in power platform that require the data to be directly available on a table or at most, one… READ MORE

Step-by-Step Guide to Adding a Custom Content Type in SharePoint Library
Step-by-Step Guide to Adding a Custom Content Type in SharePoint Library
Blog Posts

Prerequisites 1. Create a SharePoint Site First, we need to create a SharePoint site where the custom content type will be added. POST https://<your-tenant>.sharepoint.com/_api/SPSiteManager/create {   “request”: {     “Title”: “Your Site Title”,     “Url”: “https://<your-tenant>.sharepoint.com/sites/YourSiteName”,     “Lcid”: 1033,     “ShareByEmailEnabled”: false,     “Classification”: “Low Business Impact”,     “Description”: “Site for your specific purpose”,     “WebTemplate”: “STS#3”,     “SiteDesignId”: “6142d2a0-63a5-4ba0-aede-d9fefca2c767”,     “Owner”: “your-email@your-domain.com”,     “WebTemplateExtensionId”: “00000000-0000-0000-0000-000000000000”… READ MORE