Power App Samples

Articles:

Understanding Power Apss

https://tejasadventure.blogspot.com/2020/05/power-apps-understanding.html

Field Controls

https://tejasadventure.blogspot.com/2019/11/power-apps-field-controls.html

Cascading dropdown - Power Apps - How to implement

Connect to Office 365 Outlook

https://tejasadventure.blogspot.com/2019/11/connect-to-office-365-outlook-from.html

Expense Tracker App: Steps for implementation

https://tejasadventure.blogspot.com/2020/05/monthly-expenses-tracker-canvas-app-in.html

Project Management App: Steps for implementation

https://tejasadventure.blogspot.com/2020/06/project-management-app.html


Power App using Excel data

https://tejasadventure.blogspot.com/2019/11/power-app-using-excel-data.html

Applying patch method to save


Patch('Project Details',LookUp('Project Details',ID = Gallery1.Selected.ID),{PMAssignedStatus:TextInput1.Text});Navigate(ViewProjects)

TemplateFill:

If (ThisItem.IsSelected=true, Orange, White)

All items view:


With Search filter
Items: 
SortByColumns(Filter('Project Details', StartsWith(Title, TextSearchBox1.Text)), "Title", If(SortDescending1, Descending, Ascending))

I have a list of items and wanted to show "Order as string and value of the label."
"Order "&ThisItem.Customer.Company
or
"Order "&ThisItem.Company :- Incase we are fetching from the current scope.

Refresh Icon:

Refresh('Project Details')

Sort: Desc or Asc

UpdateContext({SortDescending1: !SortDescending1})

Add Icon:

NewForm(EditForm1); Navigate(UpdateDetails, ScreenTransition.None)

Back Icon:

Navigate(SelectTask, Fade)

Switch

Switch method usage:
In a list gallery, I have status field "Invoiced", "Shipped", "Closed". Now I want to show each one in one color.

Switch(ThisItem.'Order Status',  'Order Status'.Closed, Green, 'Order Status'.Invoiced, Red);

Comments