Hi Experts,
I have a dropdown that receives its values from a sharepoint list, one of the values is Opportunity to Improve
I have several boxes that I want to be hidden unless Opportunity to Improve is selected from the above dropdown box. I have set the code on the visibility to the below but i'm getting the red X, can you advise where i'm going wrong please?
If(
'Dropdown-Classification'.Selected.Value = "Opportunity to Improve",
true,
false
)
Thank you!