Tag: PowerPlatform
-
PowerPlatformTip 24 – ‘Merge arrays or tables’
Sometimes you may want to merge two arrays, including duplicates. Using the union function will merge the arrays, but it will only keep unique values. A simple trick to accomplish this is by concatenating the arrays and then getting the duplicates. split( concat( join(outputs(‘Compose_-_2_arrays’)?’array1′],’||’), ‘||’, join(outputs(‘Compose_-_2_arrays’)?[‘array2’],’||’)), ‘||’) If you want to see the overview above […]
-
PowerPlatformTip 23 – ‘Filter Blank’
If you filter a gallery in #PowerApps e.g. by textinput, dropdown or combobox, and you want to show ALL elements when the selection is empty, then just use this formula after your filtering: ‘ || isblank(YOUR FILTERINPUT) ‘ If you want to see the overview above all #PowerPlatformTip – click here
-
PowerPlatformTip 22 – ‘Change Fill & Color’
There are 2 ways to change the colors of an app if you haven’t used a modified template: ReplaceAll Theme If you want to see the overview above all #PowerPlatformTip – click here
-
PowerPlatformTip 21 – ‘Use Triggeroutput’
Inform flow starter of success/provide info/handle errors. Use trigger condition for the trigger-user-mail: triggerOutputs()?[‘headers’]?[‘x-ms-user-email’] If u want some extra info, just use (like in the pic) triggerOutputs()?[‘headers’] If you want to see the overview above all #PowerPlatformTip – click here
-
PowerPlatformTip 20 – ‘Change Flow-Owner’
PowerAutomate allows you to change the owner of your flow directly, but this feature is only available within a solution and can be accessed through a slightly hidden menu. If you want to see the overview above all #PowerPlatformTip – click here
-
JSON Objects as a Switch – Power Automate & Expressions from Damien Bird
Very exciting overview of how to easily use an object instead of a switch for the output of data. Also the idea to make the content dynamic in this way gives new suggestions for other use cases. You can see this video here on my blog because I have rated this video with 5 stars […]
-
Power Automate long running Approval flows (beyond 30 days) from Reza Dorrani
Great demo how to create approvals that can run longer than the default flow timeout of 30 days. Here the approval is ‘saved’ in a SharePoint list and based on this entry the approval is started again and again. You can see this video here on my blog because I have rated this video with […]
-
5 reasons why PowerAutomate is a better choice than MS Forms for automating your business processes
Microsoft Forms and PowerAutomate are both powerful tools for automating business processes and streamlining workflows. While MS Forms allows you to create surveys, quizzes, and other forms to collect data from your users, PowerAutomate goes a step further by providing the ability to automate actions based on the data you collect. In this blog post, […]
-
Unleashing the Power of Power Automate: Why MS Forms is No Longer Necessary
I often get a request how to collect data from external users using PowerPlatform. Of course, MS Forms immediately comes to mind. Sure, this makes it easy to create an impersonal & undynamic form and the user has to fill in all the information. However, the problem is not with MS Forms per se, but […]
-
How to dynamically show the user all available topics in the PVA within 3 steps
Chatbots are a great thing for departments and businesses and, yes also for communicating with customers. However, the problem is often that the users do not know what the chatbot can help with. Especially when new topics are added, it quickly becomes confusing. For this I want to show you a simple trick how you […]