🚫 Fixing “Future Date” Validation Errors in Power Apps (Even for Today’s Date!) 

📌 Problem We Faced:  We had a custom JavaScript validation in our Power Apps Model-Driven form. The goal was simple: 👉 Show an error if the user enters a future date.  We used this script:  if(fieldValue && fieldValue > today) { showerror } At first, it worked fine. But then… 💥 in some systems, even when…

Features of Project Operations App(in Power Apps)

How to create a Prospect in Dyna Projects(Project Operations app in Power Apps) Steps: Click on the Prospects in the left navigation bar Click '+New' button 3. Fill in the fields 4. Click Save & Close button 5.You can view the created Prospect from the Prospects view. How to create a Timesheet Entry in Dyna…

Power Apps Grid Control for Dynamics 365

The Power Apps grid control represents the next evolution of the Power Apps read-only grid control, allowing users to view, open, and edit records from views and subgrids. In addition to inline editing, the control provides a number of other powerful capabilities including infinite scrolling, nested grids, grouping, aggregation, and is customizable. Like the read-only…

Populate Lookup fields and Text fields from an Entity to Another Entity using JavaScript – Dynamics 365 CRM

There are cases where we need to set a lookup field on a Dynamics 365 or Power Apps, where we want to retrieve value of lookup fields or Text fields on the form using JavaScript and set to other entities form fields. SCENARIO: In our case we are having entities like 'Account' and 'Lead', where…

How to Call a Custom Page from Button Click in Model-Driven App

The usage of buttons in model-driven apps helps in easy navigation from one table to other tables or custom pages without even leaving the respective forms. Ribbon workbench is an efficient tool used for the same. This blog guides you through, how to call a custom page as a central dialog box inside the account…

How to add a Custom Page to an Existing Model-Driven App

The custom page is a new page type within a model-driven app, which brings the power of canvas apps into model-driven apps. Custom pages increase the convergence of model-driven and canvas apps and can be used to add full pages or dialogs with the flexibility of the canvas designer. This blog tells you how to…