I have this Named Formula:
IdeaBenefits = ["","Montary Benefits","Customer Service","Improved Morale","Improvement of Organizational Communication","Safety/Health","Working Conditions","Improve Consumer Outcomes","Process Improvement","Product Improvement","Reduce Paperwork","Other"];
The ComboBox Items property is set to:
IdeaBenefits
The ComboBox DefaultSelectedItems property is set to:
If(
IdeaFormEdit,
Filter(
IdeaBenefits,
Value in Split('List Ideas Gallery'.Selected.'Potential Benefits', ";")
),
[]
)
(Each "Idea" can have multiple benefits so this is a multi-select ComboBox)
All the other controls are working perfectly, just the one ComboBox is not. Nothing becomes selected when it should be.
For an example, when I put 'Potential Benefits' into a simple text label for a particular Idea, it shows "Montary Benefits#;Customer Service#;Improved Morale#;" (idk why the last dev added the hashes, I did try adding that in the split delimiter but it still didn't work.
Any ideas?
Categories: