Filter Using list

Hey There !!

At the moment I have an app where I use a dashboard view to act like a filter.

Everything works great, but my problem is when I try to filter the Column [Estado],
And Thatโ€™s because It is a List, So I want have to match The list of options on the filter [Estado]
3X_4_8_4800a71697051ccdc6b6ef296e58f36edafe5819.png

With the Actual values of the table
3X_b_1_b1aba96ce05be8776da30735d2d50cd3f30e60b1.png

In this example, I canยดt find the way to match with the last Row of the table, And I dont know Why.

The formula that Iโ€™m using at the moment is:
IF(ISBLANK(ANY(Dashboard Filter[Estado])),TRUE,
IN(LIST(Dashboard Filter[Estado]),LIST([Estado]))),

Thanks in advance

0 1 124
1 REPLY 1

IN() compares a single item to a list. You have 2 lists. You need to use either:

or:


Also, any expression of the form:
IF( condition , TRUE , condition2)
Would be equivalent to:
OR( condition 1 , condition 2)

Top Labels in this Space