Select with 2 Condition for dropdown

i'm try to get data in depend drop down but i need to filter the conditions 

ANY(
AND(SELECT(Room_Data[ID_Room], ([_THISROW].[Room Type] = [Room_Type])),FILTER("Room_Data", [Status] = "VC"))
)

Solved Solved
0 2 44
1 ACCEPTED SOLUTION

FILTER("Room_Data", AND([Room_Type]=[_THISROW].[Room_Type], [Status]="VC"))

Some typos corrected..

View solution in original post

2 REPLIES 2

FILTER("Room_Data", AND([Room_Type]=[_THISROW].[Room_Type], [Status]="VC"))

Some typos corrected..

Thanks for the solutions 

Top Labels in this Space