Sufiyan97
Well-known Member
- Joined
- Apr 12, 2019
- Messages
- 1,585
- Office Version
- 365
- 2013
- Platform
- Windows
I have a data like below
I a VBA to Filter Names from List (J16:J20) One by One and then Copy the filtered data:
I a VBA to Filter Names from List (J16:J20) One by One and then Copy the filtered data:
Book1 | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
C | D | E | F | G | H | I | J | K | L | |||
1 | Name | Amount | ||||||||||
2 | A | 5 | ||||||||||
3 | A | 5 | ||||||||||
4 | B | 10 | ||||||||||
5 | B | 10 | ||||||||||
6 | C | 15 | ||||||||||
7 | C | 15 | ||||||||||
8 | D | 20 | ||||||||||
9 | D | 20 | ||||||||||
10 | E | 25 | ||||||||||
11 | E | 25 | ||||||||||
12 | ||||||||||||
13 | Total Quantity | 150 | ||||||||||
14 | Total Amount | 4500 | ||||||||||
15 | ||||||||||||
16 | A | |||||||||||
17 | B | |||||||||||
18 | C | |||||||||||
19 | D | |||||||||||
20 | E | |||||||||||
21 | ||||||||||||
22 | ||||||||||||
23 | ||||||||||||
24 | ||||||||||||
25 | ||||||||||||
Sheet1 |
Cell Formulas | ||
---|---|---|
Range | Formula | |
E13 | E13 | =SUBTOTAL(9,E2:E11) |
E14 | E14 | =E13*30 |