Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
3 years ago

Filtering table based on Measure result

Hello,

this is my first week working in Power Bi, and I am facing some basic issues you'd maybe help me with.

 

I have a table listing a series of activities, each with the start/end dates and the assigned resource.

I want to know for each week how many activities/resources are used. So I created the following measure which seems to work fine.

 

 

 

ResourceByDate = COUNTROWS(FILTER(Resources,Resources[Start]<=MAX('Calendar'[Date]) && Resources[Finish]>MIN('Calendar'[Date])))

 

 

 

 

Now the problem is that I would like that when I click on a particular week on the top table, I can see in the bottom table only the activities happening that particular week.

2 Replies