I am currently writing a formula in a filter MyFilter's condition (shown below). I am trying to make it so that it will use the MyParameter's value as a filter if MyParameter's value is not All. In the case that it is All, then I would like it to not filter anything. I.e., Display all values. Here is what I have so far, which is incorrect. How might I be able to achieve the desired outcome? Thank you in advance for any help that you may offer.
IIF([MyParameter] != "All", // TEST CONDITION
[MyFilter] = [MyParameter], // THEN BLOCK
[MyFilter] = "ALL") // ELSE BLOCK