Forum Discussion

sameryamak's avatar
sameryamak
Copper Contributor
Nov 29, 2024
Solved

new people only from array

Hi Everyone Suppose you have the list below: names and status. Status may change from upcoming to closed with time meaning status is dynamic.  I am looking for a function to return the count of new...
  • SergeiBaklan's avatar
    Nov 30, 2024

    As variant

    =LET(
      names,      A2:A13,
      status,       B2:B13,
      upcoming, FILTER(names, status="Upcoming"),
      closed,       FILTER(names, status="Closed"),
      SUM( ISNA( XMATCH( upcoming, closed ) )*1 )
    )