I have a dropdown + button, now i want to enable the button only if the user select a value inside the dropdown, so inside the Button's Display mode i added this formula:-
but the button will always be disabled.. any advice?
Hi @johnjohn123 ,
I tried to recreate your use-case and here is a solution that seems to work based on what you have mentioned -
If(ComboBox1.Selected.Value = Blank(),Disabled,Edit)
Please click Accept as solution if my post helped you solve your issue. If this was useful in some way, please give a Thumbs Up.
Hello @johnjohn123,
I have created a Drop Down with Item as ["","1","2"]
in Display Mode of button
If(IsBlank(dropDownValue.Selected.Value),DisplayMode.Disabled,DisplayMode.Edit)
Check if the Drop Down Value is null, if null Disabled else Edit
Please mark as Answer if it is helpful and provide Kudos
Subscribe : https://www.youtube.com/channel/UCnGNN3hdlKBOr6PXotskNLA
Blog : https://microsoftcrmtechie.blogspot.com
Hi @johnjohn123 ,
Use this on button property 'DisplayMode' insert this formula
If(CountRows(ComboBox.SelectedItems) = 0, DisplayMode.Disabled, DisplayMode.Edit)
Hope this helps.
Hi @johnjohn123 ,
No problem,
Use this then,
If(IsBlank(Dropdown1.Selected), DisplayMode.Disabled, DisplayMode.Edit)
For this, you will require 'AllowEmptySelection' property of Dropdown set as true
Hope this helps
The first Microsoft-sponsored Power Platform Conference is coming in September. 100+ speakers, 150+ sessions, and what's new and next for Power Platform.
This training provides practical hands-on experience in creating Power Apps solutions in a full-day of instructor-led App creation workshop.
User | Count |
---|---|
191 | |
54 | |
42 | |
38 | |
33 |
User | Count |
---|---|
256 | |
78 | |
74 | |
71 | |
68 |