Translating Excel Formula to AppSheet

Hello everyone,
I’m currently trying to create a column variable (called “Sequential Count”) [refer to image] that counts in sequence the number of times a component is entered. Is there a way to do this in AppSheet? Excel Formula attached to the image.

Thanks

Solved Solved
0 7 550
1 ACCEPTED SOLUTION

Try:

COUNT(
  FILTER(
    "table",
    AND(
      ISNOTBLANK([Component]),
      ([Component] = [_THISROW].[Component]),
      ([_ROWNUMBER] < [_THISROW].[_ROWNUMBER])
    )
  )
)

View solution in original post

7 REPLIES 7
Top Labels in this Space