What is the rule regarding using the ampersand (&) and double ampersands (&&), versus commas?
Which of the following is correct/best practice?
Button Visible Property -
If(EditForm.Visible,true, If(DataCardValue1.Selected.Value="Yes",true, If(User().FullName = DataCardValue2,true,false)))
If(EditForm.Visible,true && If(DataCardValue1.Selected.Value="Yes",true && If(User().FullName = DataCardValue2,true,false)))