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 ,
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
@Ethan_Ri am using dropdpwn not combobox..
Hi @johnjohn123 ,
Use this on button property 'DisplayMode' insert this formula
If(CountRows(ComboBox.SelectedItems) = 0, DisplayMode.Disabled, DisplayMode.Edit)
Hope this helps.
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 ,
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.
WarrenBelz
791
Most Valuable Professional
MS.Ragavendar
410
Super User 2025 Season 2
mmbr1606
275
Super User 2025 Season 2