Forum Discussion
Anonymous
7 years agoNot applicable
Need help - Report Filtering
Hi I need help set up a somehwat complex filter for my report. I have a large data set that has a column titled, 'Decscription' which, contains a number of stages within my companies completi...
TeigeGao
7 years agoSolution Sage
Hi Anonymous ,
I think your environment like below:
We can use the following measure to filter it:
Measure =
IF (
MIN ( Table1[TaskId] ) = 30,
IF (
CALCULATE (
MIN ( Table1[End] ),
FILTER (
ALL ( Table1 ),
Table1[ClientCode] = MIN ( Table1[ClientCode] )
&& Table1[TaskId] = 11
)
)
= BLANK (),
1
)
)Best Regards,
Teige
Anonymous
7 years agoNot applicable