Skip to content

Matthew Devaney

No Ads, No Fluff, Just Power Apps Stuff

  • Home
  • Power Apps Standards
  • Power Apps Functions
  • Collections Cookbook
  • Free Power Apps Icons
  • About Me
  • Power Apps

Power Apps Standards: Reviewing Canvas Apps

Table Of Contents: • App Checker • Power Apps Code Review Tool • Source Code Review • Functional Testing & User Acceptance Testing App Checker App checker identifies potential issues within a canvas app.  A red dot will appear when…

  • Posted by - Matthew Devaney
  • on - September 4, 2022
Continue Reading
  • Power Apps

Power Apps Standards: Naming Conventions

Table Of Contents: • Screen Names • Control Names • Variable Names • Collection Names • Datasource Table Names Screen Names A screen name should clearly describe its purpose in 2-3 words ending with word “Screen.”  Use proper-case.   A screen-reader…

  • Posted by - Matthew Devaney
  • on - August 30, 2022
Continue Reading
  • Power Apps

Power Apps Generate Row Numbers In A Collection

Generate row numbers for a Power Apps collection with this formula. Copy and paste this code into your own app. // Generate row number code ClearCollect( colSolution, ForAll( Sequence(CountRows(colMyCollection)), Patch( Last(FirstN(colMyCollection, Value)), {RowNumber: Value} ) ) ) Here’s how it…

  • Posted by - Matthew Devaney
  • on - August 22, 2022
Continue Reading
  • Power Apps

Power Apps Tip: Hide The Navigation Bar In Play Mode

Hide the Power Apps navigation bar in play mode by adding hidenavbar=true to the end of the app’s URL. I recommend you do this when providing users with a link to any canvas app so it displays as large as…

  • Posted by - Matthew Devaney
  • on - August 14, 2022
Continue Reading
  • Power Apps

Power Apps Hack To Style All Form Controls In Seconds

This strange hack makes it possible to quickly update the style of all DataCardKeys and DataCardValues in a Power Apps form. Normally its simple to update multiple controls at once. Just select a group of controls then change the desired…

  • Posted by - Matthew Devaney
  • on - August 7, 2022
Continue Reading
  • Power Apps

Remove Duplicate Rows From A Power Apps Collection

Remove the duplicate rows from any Power Apps collection with this 1 line of code. //Duplicate removal code ClearCollect(colSolution, ForAll(Distinct(yourCollectionName, ThisRecord), Result)); Here’s how it works: The Distinct function returns a one-column table of unique values for a field. But…

  • Posted by - Matthew Devaney
  • on - July 31, 2022
Continue Reading
  • Power Apps

A Visual Guide To Power Platform Service Principal Setup

Using a Power Platform service principal account is an awesome way to securely run your Power Automate flows. Service principals have system the administrator role and stay logged permanently stay logged in with a special type of permanent password called…

  • Posted by - Matthew Devaney
  • on - July 24, 2022
Continue Reading
  • Power Apps

10 Power Apps Code Examples To Improve Your Coding Style

You, my fellow human, are about to become better at writing Power Apps code.By following a coding standard you can make your apps easier to maintain and have less bugs. High-quality code is simple to read. It follows a consistent…

  • Posted by - Matthew Devaney
  • on - July 17, 2022
Continue Reading
  • Power Automate

Power Automate: Create Word Document With A Repeating Section

Power Automate can populate a word document template with values and convert the document to PDF. Updating single text fields in a PDF is easy but implementing a repeating section requires different code. Repeating sections are typically used to display…

  • Posted by - Matthew Devaney
  • on - July 10, 2022
Continue Reading
  • Power Apps

Rename Variables In Power Apps With 1-Click

Power Apps find & replace tool is a powerful new feature. You can use it to quickly rename all occurrences of a variable or collection in your app. It is no longer necessary to change variable names one-by-one or download…

  • Posted by - Matthew Devaney
  • on - July 3, 2022
Continue Reading

Posts navigation

Prev 1 2 3 4 5 6 7 … 15 Next

Subscribe 😺

Subscribe to get new Power Apps articles sent to your inbox each week for FREE.

Most Recent Posts

  • 23 Power Apps Filter Function Examples For SharePoint
  • Power Apps Custom Page Modal Dialog For Model-Driven Apps
  • How To Make A Power Apps Custom Page (Full Tutorial)
  • 8 Power Platform DLP Policy Best Practices
  • 7 Mistakes To Avoid When Creating A Power Platform Environment
  • Power Apps Filter Multiple Person Column (No Delegation Warning)
  • Power Apps Button With Icon And Text
  • SharePoint Delegation Cheat Sheet For Power Apps

Most Popular Posts

  • The Complete Power Apps Functions List
  • Power Apps Easiest Way To Upload Files To A SharePoint Document Library
  • 7 Ways To Use The PATCH Function In Power Apps (Cheat Sheet)
  • All Power Apps Date & Time Functions (With Examples)
  • PowerApps Collections Cookbook
  • Easiest Way To Generate A PDF In Power Apps (No HTML)
  • 2,000 Free Power Apps Icons
  • Create Power Apps Collections Over 2000 Rows With These 4 Tricks
  • 3 Ways To Filter A Power Apps Gallery By The Current User
  • 2023 Power Apps Coding Standards For Canvas Apps
  • Twitter
  • Linkedin

Subscribe 😺

Subscribe to get new Power Apps articles sent to your inbox each week for FREE.