Announcements
I am working on a business rule to populate a "Date Completed" field when Status changes to several options. When any of these conditions are met, I want to set the Date Completed to Now(). Can this be done?
@cmanning
I would suggest you use a calculated column or a Formula column for that purpose.
Calculated Columns:
https://learn.microsoft.com/en-us/power-apps/developer/data-platform/calculated-rollup-attributes#calculated-columns
Formula Columns:
https://learn.microsoft.com/en-us/power-apps/maker/data-platform/formula-columns
@Mira_Ghaly - Thank you for your response and for pointing me in the right direction. I created a new formula column "DateClosed" and pasted this code.
If( IssueStatus = IssueStatusChoices.'No Issue Found' Or IssueStatus = IssueStatusChoices.'Outside Our Scope' Or IssueStatus = IssueStatusChoices.'Requires ServiceNow Ticket' Or IssueStatus = IssueStatusChoices.'User Failed to Respond' Or IssueStatus = IssueStatusChoices.Cancelled Or IssueStatus = IssueStatusChoices.Resolved, UTCNow(), Blank() )
When a new or existing record's IssueStatus is set to one of the choices listed in the above code, "DateClosed" will bet set to UTCNow(). Otherwise, it is set to Blank(). I have tested this and it works great!
Under review
Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.
Congratulations to our 2026 Super Users!
Congratulations to our 2025 community superstars!
These are the community rock stars!
Stay up to date on forum activity by subscribing.
11manish 534
WarrenBelz 416 Most Valuable Professional
Valantis 306