Skip to main content

I want to flag serial numbers that have both Installation and Installation Completed activities and with order status Closed or Closed Complete. If a serial number have both then it means the serial number has installation completed True.

Serial numbers with closed completed installation

7 réponses
  1. 31 mars 2025, 15:38

    The below will match on multiple conditions within a serial number. See if this matches on what you're trying to do?

    {FIXED [SERIAL_NUMBER], [ORDER STATUS], [ACTIVITY] : (IF MAX([ORDER STATUS])='Closed' AND MAX([ORDER STATUS])='Closed Complete'

    OR MAX([ACTIVITY])='Installation' OR MAX([ACTIVITY])='Installation Completed' THEN TRUE END) }

    The below will match on multiple conditions within a serial number. See if this matches on what you're trying to do?

     

    Best, Don Wise -

    Please don’t forget to upvote and/or Select as Best by clicking the hyperlink below in the response that answered your question

0/9000