How to Filter the table based on a list?

Hi, I have a sample scenario here, please help me how to filter the table based on a list?

Data:

DescriptionQuantity
Apple2
Banana3
Apple6
Banana5
Orange7
Grapes9

I want to filter the table based on the list the user has access. Sample if User1 should only view banana & apples, he can only see this:

DescriptionQuantity
Apple2
Banana3
Apple

6

 

I tried to use the combination of ANY & SELECT formula, but unfortunately it would only filter to one item either Apple or Banana.

Formula:

[Description]=ANY(SELECT(XXXXX[XXXXX],XXXXX=XXXXX))

 

Kindly help me what is the best formula for this one. 

 

Thank you!

0 2 70
2 REPLIES 2

Select(TableName[Description],OR([Description]="Apple",[Description]="Banana"))

But this really depends in the context of where you are using this.  Also the Select function should be choosing the Key Column, which I presume description isn't as it has duplicate values.

Simon@1minManager.com

Steve
Platinum 4
Platinum 4
Top Labels in this Space