문제

In a spreadsheet in Google Spreadsheets, I`m trying to solve this:

17/02/2012  banana
17/02/2012  banana
17/02/2012  banana
17/02/2012  apple
18/02/2012  apple
18/02/2012  apple

I need a formula that returns how many times an unique value appears in a given date.

Example:

17/02/2012 - two unique values 
18/02/2012 - one unique value

Anyone can help?

도움이 되었습니까?

해결책

To do this, you would use something like this:

=ARRAYFORMULA(UNIQUE(B5:C10))

Assuming your range is in B5:C10. You may have to adjust the range.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top