web
You’re offline. This is a read only version of the page.
close
Skip to main content

Announcements

News and Announcements icon
Community site session details

Community site session details

Session Id :
Power Platform Community / Forums / Power Apps / Changing status drop d...
Power Apps
Answered

Changing status drop down automatically

(0) ShareShare
ReportReport
Posted on by Microsoft Employee

Hi all, 

So, I've been having a problem with my Power Apps form which contains a drop down field titled 'status'. The status has 4 options: New, Approved, In Review, Rejected. I want each of these options to be relative to what is happening in the form. 

 

- I want the status to be 'New' whenever the form is created but not submitted. 

- 'In Review' when the form has either just been submitted or is awaiting a second,third, or fourth approval (I have a staged approval system of 4 people)

- 'Approved' when the final approver approves the form. 

- 'Rejected' when either one of the approvers reject the form. 

 

Please feel free to ask me if you have any questions. 

 

 

Categories:
I have the same question (0)
  • Verified answer
    Anchov Profile Picture
    1,986 on at

    You will need to set you set your business logic in a status variable prior to the SubmitForm action of your form.  You will have different conditions to be satisfied to determine each status that needs to be updated.  For Example:

    //This logic saves the form sets the Status to "Draft" if the Submit button has not been clicked on 
     If(
     varCurrentRecord.Status.Value <> "Submitted",
     Set(
     varSetStatus,
     {Value: "Draft"}
     );
     );
    SubmitForm(form1)

    Then, the Default property of the Status drop down is set to:

    If(
     !IsBlank(varSetStatus.Value),
     varSetStatus,
     ThisItem.Status
    )

     



    If I have answered your question, please mark your post as Solved.
    If you like my response, please give it a Thumbs Up.

    Cheers!
    Rick Hurt

     

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.

Helpful resources

Quick Links

Season of Sharing Community Challenge Winners!

Congratulations to our community stars!

Kudos to our 2025 Community Spotlight Honorees

Expanding mentorship, skilling, and AI innovation

Congratulations to the July Top 10 Community Leaders!

These are the community rock stars!

Leaderboard > Power Apps

#1
WarrenBelz Profile Picture

WarrenBelz 392 Most Valuable Professional

#2
11manish Profile Picture

11manish 136 Super User 2026 Season 2

#3
MS.Ragavendar Profile Picture

MS.Ragavendar 109 Super User 2026 Season 2

Last 30 days Overall leaderboard