Hi all,
So i'm trying to use an "If" together with an "Or" to get two possible outcomes below as to whether a button result can be edit or disabled, which doesn't seem to work. An invalid number of arguments, received one but expected 2 or more.
If(Or
(DataCardValue5.Selected.Value <> Blank() && DataCardValue6.Selected.Value <> Blank(),
DataCardValue5.Selected.Value <> Blank() && DataCardValue6.Selected.Value = "Longer (please give comment)" && DataCardValue25.Value <> "",
DisplayMode.Edit,
DisplayMode.Disabled))
Any help would be greatly appreciated.