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 / Enabling/Disabling a F...
Power Apps
Answered

Enabling/Disabling a Field

(3) ShareShare
ReportReport
Posted on by 697
Hi,
 
I have 3 Fields
 
2 Dropdowns field and 1 Number field as below:
 
1. Type:
Internal
External
 
2. Country:
USA
EMEA
 
3. Amount: this is a number field
 
When Internal option is selected from Type dropdown, Amount field gets disabled
For Amount field, I added below expression:
If(drpType.Selected.Value = "Internal", DisplayMode.Disabled, DisplayMode.Edit )
What I'm looking for: The Amount field should get Enabled based on 2 dropdown selections:
 
When Internal from Type field is selected and when EMEA is also selected from Country field, the amount column should get Enabled, allowing users to manually enter the value.
 
Please advise. Thanks!
Categories:
I have the same question (0)
  • Verified answer
    MS.Ragavendar Profile Picture
    7,431 Super User 2026 Season 1 on at
     
    If(
        drpType.Selected.Value = "Internal" && drpCountry.Selected.Value <> "EMEA",
        DisplayMode.Disabled,
        DisplayMode.Edit
    )
     
    ✅If this helped, please Accept as Solution to help others ❤️ A Like is appreciated 🏷️ Tag @MS.Ragavendar for follow-ups.
  • Verified answer
    PowerDeveloperTP Profile Picture
    453 on at
     
    Hello @Prem4253
     
    You can check country dropdown value inside the first IF loop like below and make field editable.
     
     
    If(
        drpType.Selected.Value = "Internal",
        If(
            drpCountry.Selected.Value = "EMEA",
            DisplayMode.Edit,
            DisplayMode.Disabled
        ),
        DisplayMode.Disabled
    )
     
     
     
    Thank you.
    Like my answer? - Hit that Thumbs Up. Resolved the Issue? - Hit Accept as Solution.
    This helps others find solutions to future issues!
     
     
  • Verified answer
    Kalathiya Profile Picture
    2,456 Super User 2026 Season 1 on at
    Hello @Prem4253,
     
    You can try below formula as well. 
     
    If(
        drpType.Selected.Value = "Internal" && drpCountry.Selected.Value = "EMEA",
        DisplayMode.Edit,
        If(
            drpType.Selected.Value = "Internal",
            DisplayMode.Disabled,
            DisplayMode.Edit
        )
    )
    If this response resolves your issue, please mark it as the Verified Answer so it can help other community members as well.
    ---------------------------------------------------------------------------------

    📩 Need more help? Just mention @Kalathiya and I’ll be happy to assist.

    ✔️ If this answer helped you, please tick “Does this answer your question?” so it can be marked as the Verified Answer.

    💛 A Like always motivates me to keep contributing!

  • Suggested answer
    Haque Profile Picture
    3,653 on at
     
    HI, @Prem4253,
     
    Set the DisplayMode property of the Amount field to:
     
    If(
        drpType.Selected.Value = "Internal" && drpCountry.Selected.Value = "EMEA",
        DisplayMode.Edit,
        DisplayMode.Disabled
    )
    
    Let me know if ti helps.
     
     

    I am sure some clues I tried to give. If these clues help to resolve the issue brought you by here, please don't forget to check the box Does this answer your question? At the same time, I am pretty sure you have liked the response!
  • Prem4253 Profile Picture
    697 on at
     
    Thanks everyone!
     
    All the 4 methods worked for me.
     
    Thanks once again.

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 Launch!

Jump in, show your community spirit, and win prizes!

Kudos to our 2025 Community Spotlight Honorees

Expanding mentorship, skilling, and AI innovation

Congratulations to the May Top 10 Community Leaders!

These are the community rock stars!

Leaderboard > Power Apps

#1
Valantis Profile Picture

Valantis 424

#2
WarrenBelz Profile Picture

WarrenBelz 355 Most Valuable Professional

#3
11manish Profile Picture

11manish 290

Last 30 days Overall leaderboard