blader1989
New Member
- Joined
- May 6, 2021
- Messages
- 15
- Office Version
- 365
- Platform
- Windows
Hi all,
I'm looking for formular that can count unique value appear in range of date from my report, I have tried a lot of method but it could not result as my desired. So it would be great from your help to solve my problem.
Below is my example table and desired output I would to have: Consider that I receive the report from a server then I want to count the unique value appear in date range, if this value appear (assump value X appear on 25 and 26 March 2025, it will count as 2 not one EVEN THOUGH it appear 2 times on 25 March 2025).
Thank you so much, your help will be much appreciated!!!
I'm looking for formular that can count unique value appear in range of date from my report, I have tried a lot of method but it could not result as my desired. So it would be great from your help to solve my problem.
Below is my example table and desired output I would to have: Consider that I receive the report from a server then I want to count the unique value appear in date range, if this value appear (assump value X appear on 25 and 26 March 2025, it will count as 2 not one EVEN THOUGH it appear 2 times on 25 March 2025).
Book1 | ||||
---|---|---|---|---|
A | B | |||
1 | Date | Value | ||
2 | 25/03/2025 | X | ||
3 | 25/03/2025 | X | ||
4 | 26/03/2025 | X | ||
5 | 25/03/2025 | Y | ||
6 | 25/03/2025 | Y | ||
7 | 27/03/2025 | Y | ||
8 | 26/03/2025 | Y | ||
9 | 26/03/2025 | Z | ||
10 | 27/03/2025 | Z | ||
11 | 25/03/2025 | Z | ||
12 | ||||
13 | Desired output as below | |||
14 | Value | Count | ||
15 | X | 2 | ||
16 | Y | 3 | ||
17 | Z | 3 | ||
Sheet4 |
Cell Formulas | ||
---|---|---|
Range | Formula | |
A15:A17 | A15 | =UNIQUE(B2:B11) |
Dynamic array formulas. |
Thank you so much, your help will be much appreciated!!!