Power Apps

Create ChatGPT Power Apps app using Azure OpenAI Chat Completions GPT API

If you have access to the OpenAI Chat Completions GPT APIs either through the one from OpenAI LLC or Azure OpenAI, it is pretty simple to create the ChatGPT-like app using Power Apps and Power Automate. The intention of this article is to create a simple application process without worrying too much about making it …

Create ChatGPT Power Apps app using Azure OpenAI Chat Completions GPT API Read More »

PowerShell – Get the list of all connectors used by each Power Apps application

The PowerShell script will list all connectors used in the Power Apps application in all environments user has access to. # Required Modules (installed as admin) #   Install-Module -Name Microsoft.PowerApps.Administration.PowerShell #   Install-Module -Name Microsoft.PowerApps.PowerShell -AllowClobber # $Delimiter = “,” # Get list of all Environments $Environments = Get-PowerAppEnvironment | Select-Object -Property EnvironmentName, DisplayName  write-host $Environments # Loop …

PowerShell – Get the list of all connectors used by each Power Apps application Read More »

Power Apps Save Combo Box with Office 365 Users to SharePoint List’s Person Data

This is a quick post showing how to save Office 365 Users data from the combo box to a SharePoint list. It shows two combo boxes with Office 365 Users – one allowing only one selection, another allows multiple. The former will save to the SharePoint column with the Person data type, the latter to …

Power Apps Save Combo Box with Office 365 Users to SharePoint List’s Person Data Read More »

Scroll to Top