Skip to main content

Posts

Showing posts from November, 2019

Power Apps Field controls, Collection concept in Power app

In the input field, To display the currrent data and time information. Text(Now(), ShortDateTime) OnSelect of any icon, In order to navigate between the screens in powerapps Navigate(SourceScreen, ScreenTransition.Fade) To Reset the feilds, Try this in button or close button of the form. Reset(inputBody); Reset(inputSubject); Reset(inputTo); Date: DateDiff(Today(), DateValue("28/08/1991")) Collections : Can be used like an array in power app.

Connect to Office 365 Outlook from PowerApps

If you connect to Office 365 Outlook, you can show, send, delete, and reply to email messages, in addition to other tasks. You can add controls to perform these functions in your app. For example, you can add  Text input  controls to ask for the recipient, the subject, and the body of the email, and add a  Button  control to send the email. This topic shows you how to add Office 365 Outlook as a connection, add Office 365 Outlook as a data source to your app, and use this data in different controls. Connect to Office 365 Outlook Add a data connection and select  Office 365 Outlook : Select  Connect , and if prompted to sign in, enter your work account. The Office 365 Outlook connection has been created and added to your app. Now, it's ready to be used. Show messages On the  Insert  menu, select  Gallery , and then select a  Text gallery  control. Set its  Items  property to the following ...

Power App using Excel data

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 https://tejasadventure.blogspot.com/2020/06/cascading-dropdown-power-apps.html 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 Few Samples and Knowledge sharing https://tejasadventure.blogspot.com/2020/06/power-app-samples.html Create a canvas app from scratch based on Excel data ...

Power Apps how to configure using blank screens

Power Apps how to configure using blank screens Using PowerApps, you can quickly build custom business apps that connect to your business data stored  either  in the underlying data platform ( Common Data Service )  or  in various online and on-premises data sources (SharePoint, Excel, Office 365, Dynamics 365, SQL Server, and so on). Lets learn from scratch how to create an power app using databases available using "Common Data Services". Create a canvas app from scratch using Common Data Service Build a canvas app to manage data that's stored in Common Data Service, using standard entities (which are built in), custom entities (which your organization creates), or both. When you build an app from Common Data Service, you don't need to create a connection from PowerApps, as you do with data sources such as SharePoint, Dynamics 365, or Salesforce. You need only to specify the entities that you want to show or manage in the app. Prerequisites Befo...