@Anonymous ,
No - Switch is nothing more than a "shorthand" If() statement. It seems two things - the conditional filter does not like Delegation and also not the Abs() - though I have used it before. The below is Delegable
With(
{wValue: Value(DataCardValue16.Text)},
Switch(
operatorLabel.Text,
">",
Filter(
SP_List,
wValue > Amount
),
"<",
Filter(
SP_List,
wValue < Amount
),
"!=",
Filter(
SP_List,
wValue <> Amount
),
">=",
Filter(
SP_List,
wValue >= Amount
),
"<=",
Filter(
SP_List,
wValue <= Amount
)
)
)
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.