Skip to main content

Hi All, I am trying to get Cases where the only two conditions are met. A case with both CodeType 'Install' and 'Complete' and both Status 'Closed'. see below. I have attached packaged workbookCalculation to Get only Cases where CodeType  = 'Install' and 'Complete' and both Status 'Closed'

6 réponses
  1. 9 mai 2024, 11:04

    A simple version?

    {FIXED [CaseNo]: MAX([CodeType]="Complete" AND [Status]="Closed")}

    AND

    {FIXED [CaseNo]: MAX([CodeType]="Install" AND [Status]="Closed")}

0/9000