Announcements
For your multi-select dropdown scenario where you want two hidden fields to show if "Other" or "Electricity" is selected—and to remain visible if either is selected regardless of other selections—you need a formula that checks if either "Other" or "Electricity" is currently selected anywhere in the multi-select choices.
Using in alone might not work as expected because the multi-select dropdown returns a table of selected records, not a single value.
in
Use the Filter or LookUp function to check if "Other" or "Electricity" exists in the selected items collection.
Filter
LookUp
For example, set the Visible property of the hidden fields to this formula:
Or( CountRows(Filter(MultiSelectDropdown.SelectedItems, Value = "Other")) > 0, CountRows(Filter(MultiSelectDropdown.SelectedItems, Value = "Electricity")) > 0 )
Note: If your dropdown uses a different field name instead of Value (e.g., Title or Name), replace Value accordingly.
Value
Title
Name
"Other" in ComboBox.SelectedItems.Value || "Electricity" in ComboBox.SelectedItems.Value //Replace with your control name
if users select additional values more values afterwards, the fields will remain visible as long as either "Other" or "Electricity" still exists in the selected items.
📩 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!
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.
Vish WR 899
Valantis 571
11manish 499