Forum Discussion
Anonymous
7 years agoNot applicable
Filter Data based on a specific row value
Hello, I have a table with a list of milestones for each project in a vertical manner along with the milestone date and status. I want to be able to filter to specific projects from the table bas...
nmck86
7 years agoPost Patron
CALCULATE(
COUNT('TBL'[PROJECT_CD] ),
'TBL'[PROJECT_CD] = "1000")+CALCULATE(
COUNT('TBL'[PROJECT_CD] ),
'TBL'[PROJECT_CD] = "1003")
may be missing a parenthesis but that should get you the counts for the codes that are equal to 1001 & 1003