Santosh080
Board Regular
- Joined
- Jul 15, 2016
- Messages
- 77
- Office Version
- 2021
- Platform
- Windows
hello Friends
i have a excel sheet like this.
I want to extract data like below table. Here i want ignore data where Debit,Credit,Interest,Balance all are "0" and extract data where data avaible. Please help me. Thanks
i have a excel sheet like this.
MY MF.xlsx | |||||||
---|---|---|---|---|---|---|---|
A | B | C | D | E | |||
1 | Dates | Debit | Credit | Interest | Balance | ||
2 | 29-09-2011 | 100000.00 | |||||
3 | 30-09-2011 | 5000 | 0 | 0 | 105000.00 | ||
4 | 01-10-2011 | 0 | 6000 | 0 | 99000.00 | ||
5 | 02-10-2011 | 0 | 0 | 0 | 99000.00 | ||
6 | 03-10-2011 | 0 | 0 | 0 | 99000.00 | ||
7 | 04-10-2011 | 0 | 0 | 0 | 99000.00 | ||
8 | 05-10-2011 | 0 | 0 | 0 | 99000.00 | ||
9 | 06-10-2011 | 0 | 0 | 0 | 99000.00 | ||
10 | 07-10-2011 | 0 | 0 | 0 | 99000.00 | ||
11 | 08-10-2011 | 0 | 0 | 0 | 99000.00 | ||
12 | 09-10-2011 | 0 | 0 | 0 | 99000.00 | ||
13 | 10-10-2011 | 0 | 0 | 1169 | 100169.00 | ||
14 | 11-10-2011 | 0 | 0 | 0 | 100169.00 | ||
15 | 12-10-2011 | 0 | 0 | 0 | 100169.00 | ||
16 | 13-10-2011 | 0 | 0 | 0 | 100169.00 | ||
17 | 14-10-2011 | 15000 | 0 | 0 | 115169.00 | ||
18 | 15-10-2011 | 0 | 0 | 0 | 115169.00 | ||
19 | 16-10-2011 | 0 | 0 | 0 | 115169.00 | ||
20 | 17-10-2011 | 0 | 0 | 0 | 115169.00 | ||
21 | 18-10-2011 | 0 | 3000 | 0 | 112169.00 | ||
22 | 19-10-2011 | 0 | 0 | 0 | 112169.00 | ||
23 | 20-10-2011 | 0 | 0 | 0 | 112169.00 | ||
24 | 21-10-2011 | 0 | 0 | 1547 | 113716.00 | ||
25 | 22-10-2011 | 0 | 0 | 0 | 113716.00 | ||
26 | 23-10-2011 | 0 | 0 | 0 | 113716.00 | ||
27 | 24-10-2011 | 0 | 0 | 0 | 113716.00 | ||
Sheet2 |
Cell Formulas | ||
---|---|---|
Range | Formula | |
E3:E27 | E3 | =E2+B3+D3-C3 |
I want to extract data like below table. Here i want ignore data where Debit,Credit,Interest,Balance all are "0" and extract data where data avaible. Please help me. Thanks
MY MF.xlsx | |||||||
---|---|---|---|---|---|---|---|
I | J | K | L | M | |||
1 | Debit | Credit | Interest | Balance | Dates | ||
2 | 0 | 0 | 0 | 100000.00 | 29-09-2011 | ||
3 | 0 | 6000 | 0 | 99000.00 | 01-10-2011 | ||
4 | 0 | 0 | 1169 | 100169.00 | 10-10-2011 | ||
5 | 15000 | 0 | 0 | 115169.00 | 14-10-2011 | ||
6 | 0 | 3000 | 0 | 112169.00 | 18-10-2011 | ||
7 | 0 | 0 | 1547 | 113716.00 | 21-10-2011 | ||
Sheet2 |