Forum Discussion
pillaisg
Oct 03, 2024Copper Contributor
Count the instances of occurrence based on criteria.
I have used countif function for identifying the number of occcurance of a value in a specific column. Upon using this function, the value returned is the total number of occurrences whereas what is ...
- Oct 03, 2024
SergeiBaklan
Oct 03, 2024Diamond Contributor
Another variant for Excel 365
=LET(
n, ROWS(Fruit),
i, SEQUENCE(n),
j, TOROW(i),
MMULT((i>=j)*(Fruit=TRANSPOSE(Fruit) ), SEQUENCE(n,,,0) )
)