by Kyle | Dec 18, 2022 | Uncategorized
PowerApps RemoveIf – Delete ALL Records in a SharePoint list from PowerApps button click PowerApps RemoveIf – Delete ALL Records in a SharePoint list from PowerApps button click Command Used: RemoveIf(‘Datasource’, true) Microsoft...
by Kyle | Dec 11, 2022 | Uncategorized
Trim String in Power Automate Flow In this video we will take a string of 12345678910111213141516 and trim it to output 12345. Code used: if(greater(length(variables(‘Large Var’)),5), take(variables(‘Large Var’),5), variables(‘Large...
by Kyle | Dec 4, 2022 | Uncategorized
Power Automate – Get Items – Filter if text Contains Power Automate – Get Items – Filter if text Contains Using the Get Items step on a SharePoint list in Power Automate. Here we show how you can filter on a value that “contains”...
by Kyle | Nov 27, 2022 | Uncategorized
PowerApps RemoveIf – Delete Records in a SharePoint list IF Title equals Using the RemoveIf function we delete multiple records in a SharePoint list with a specific title from clicking a button in PowerApps. Command Used: RemoveIf(‘Remove Row’, Title...
by Kyle | Nov 13, 2022 | Uncategorized
PowerApps Portals – Page to show for Authenticated Users Only Lock a portals page for users who are signed in. The page will be hidden for unauthenticated users. You can watch the full video...
by Kyle | Nov 4, 2022 | Uncategorized
Build your first PowerApp – Very Basic Feedback Form and submit data to a SharePoint List Build your first PowerApp – Very Basic Feedback Form and submit data to a SharePoint List Commands used in video: SubmitForm(Form1); ResetForm(Form1); NewForm(Form1)...