I have a data card with 3 keys:
DatacardKey_1: Only visible is AccountType_DataCardValue.Selected.Value is blank (default)
DatacardKey_2: Only visible is AccountType_DataCardValue.Selected.Value is Leadership
DatacardKey_3: Only visible is AccountType_DataCardValue.Selected.Value is User
With
If(
IsBlank(AccountType_DataCardValue.Selected.Value),false,true,
AccountType_DataCardValue.Selected.Value="Leadership",true,false,
AccountType_DataCardValue.Selected.Value="User",true,false
)
No datacard value is shown at all if the data AccountType_DataCardValue.Selected.Value is blank
If AccountType_DataCardValue.Selected.Value is User DatacardKey_3 is the only one displayed (correct and expected behavior)
If AccountType_DataCardValue.Selected.Value is Leadership DatacardKey_1 AND DatacardKey_2 are both shown.
I have tried many variations of the code and none of them work. Is this a bug?