Hi,
I have two tables. I have a measure to count rows based on date and status. I need to add another filter to a related table (i have set up a relationship with an ID). It needs to filter values where status in table 2 is also "Open". How do i add another filter to this measure that also applies the filter from another related table?
Solved! Go to Solution.
Give this a try
measure1 =
CALCULATE (
COUNTROWS (
FILTER ( 'Table1', [Invoice Date] <= TODAY () && [Status] = "Open" )
),
'Table2'[Field] = "something"
)
Give this a try
measure1 =
CALCULATE (
COUNTROWS (
FILTER ( 'Table1', [Invoice Date] <= TODAY () && [Status] = "Open" )
),
'Table2'[Field] = "something"
)
Join us for a free, hands-on Microsoft workshop led by women trainers for women where you will learn how to build a Dashboard in a Day!
User | Count |
---|---|
125 | |
78 | |
69 | |
54 | |
53 |
User | Count |
---|---|
191 | |
104 | |
83 | |
79 | |
78 |