How to make a expression evaluates to false
The 'edit validation' rule has the ability to select the boolean expession '[expression evaluates to true]' but the opposite does not exist. I am making a rule if a value populates in a pagelist's certain property then it hides a particular field. I am having difficulties since visibility may change depending on which value has been populated in the pagelist so I really need the opposite of the '[expression evaluates to true]'. Can someone enlighten me?
***Edited by Moderator Marissa to update platform capability tags****
Hi ,
DId you try adding an negation before the function.
!@IsInPageList("Specific Value","Property in List",PageList)
you can also include the same in a when condition and check whether False= @IsInPageList("Specific Value","Property in List",PageList)
Let us know if it works..!!