Translate gsheet expression

Hi Team,
anybody could translate me this expression “=value(COUNTIFS($B$2:B2;B2;$A$2:A2;A2))” ?

b= [dia]
a= [user]

thks in advance

0 3 278
3 REPLIES 3

nobody?

2X_e_e3bf8260442d1270613aa4a92688f17518874649.png
I want to count same values of column c, is not possible?

Try:

COUNT(
  FILTER(
    "MyTable",
    AND(
      ISNOTBLANK([SomeColumn]),
      ([SomeColumn] = [_THISROW].[SomeColumn]),
      ([_ROWNUMBER] <= [_THISROW].[_ROWNUMBER])
    )
  )
)
Top Labels in this Space