PATCH A SharePoint Currency Column In Power Apps
PATCH A SharePoint Currency Column In Power Apps Goal Change the TotalAmountCurrency column (Currency type) from blank to $350.25 Input Customer Invoices (Sh...
- Published
- Reading time
- 1 min read
Before you start
Is this guide for you?
- Best entry point
- SharePoint
- Time investment
- 1 min read
Imported reference from Matthew Devaney's blog for learning purposes. Original: https://www.matthewdevaney.com/power-apps-patch-function-examples-for-every-sharepoint-column-type/patch-a-sharepoint-currency-column-in-power-apps/. Author: Matthew Devaney.
PATCH A SharePoint Currency Column In Power Apps Goal
Change the TotalAmountCurrency column (Currency type) from blank to $350.25 Input Customer Invoices (SharePoint List) ID InvoiceNumber CustomerName TotalAmountCurrency 1 1001 HYK Group Limited Patch Function Code Patch(
'Customer Invoices' , LookUp( 'Customer Invoices' , ID= 1 ), { TotalAmountCurrency : 350.25 } ) Code language: JavaScript ( javascript ) Output Customer Invoices (SharePoint List) ID InvoiceNumber CustomerName TotalAmountCurrency 1 1001 HYK Group Limited $320.25 Scenario #1: Text Input
Patch a value found in a combo box to a Currency field. Patch Function Code Patch(
'Customer Invoices' , LookUp( 'Customer Invoices' , ID= 1 ), {
TotalAmountCurrency : TextInput_TotalAmount.Text } ) Code language: JavaScript ( javascript ) Did You Enjoy This Article? 😺
Subscribe to get new Copilot Studio articles sent to your inbox each week for FREE Enter your email address Sign Me Up
Tagged
Patch · SharePoint
Have a Microsoft 365 topic idea?
Share article suggestions, community session ideas, corrections, or real-world scenarios for future nextM365 learning notes.
Keep learning Microsoft 365
Explore more practical guides for SharePoint, Power Platform, Copilot Studio, migration, automation, governance, and security.
Continue learning
Related tutorials
Related questions
Related comparisons
Next action