Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
2 years ago
Solved

Maintenance Tracking - What am I missing?

I was hoping someone might be able to help me start on this. I’m trying to create a few dashboards for our Operational teams to track maintenance being done. We have a master list of all maintenance...
  • Greg_Deckler's avatar
    Greg_Deckler
    2 years ago

    Anonymous To get a list of checks that have never been completed, you can do something like this:

    Measure = 
      VAR __MassterList = DISTINCT( 'Maintenance Check Master List'[MtcCheck] )
      VAR __Completed = DISTINCT( 'Completed Maintenance Checks'[MtcCheck] )
      VAR __Table = EXCEPT( __MasterList, __Completed )
      VAR __Result = COUNTROWS( __Table )
    RETURN
      __Result