I have two email columns in a SharePoint list (eMail1 and eMail2). I have a toolbar in my app where I have placed an email icon.
What I am trying to do is show/hide the icon if both of the columns are empty for the selected item. Hope that make sense.
On the visibility property I am writing this formula:
If(IsBlank(mygalleryname.Selected.eMail1), And(mygalleryname.Selected.eMail2), false, true)
I'm getting no errors from Power Apps which, makes me think this is a working formula that should hide the email icon if both columns are blank. If either of the columns or both columns are not blank the email icon is shown.
What am I missing?
Any help is greatly appreciated.