Forum Discussion

smstrickland's avatar
smstrickland
Helper I
6 years ago
Solved

Help with DAX measure

My organization has two time entry systems. I have created a matrix that shows the total number of hours entered into each system, per project, that can be filtered by employee and pay period. A samp...
  • Greg_Deckler's avatar
    Greg_Deckler
    6 years ago

    In that case, then somthing like this should work:

     

    Measure =
      VAR __Table =
        SUMMARIZE(
          'Table',[Project],
          "__Comp",[Comparison]
        )
    RETURN
      IF(COUNTROWS(FILTER(__Table,[Comparison] <> 0)) = 0,"Good","Bad")