Hello
in RESULT sheet there is no any data, but what I want making report based on sheet1
it should populate accounts names in column B by brings from row1 from column G to last column( every time add new account name so will insert new columns)
as to column C,D for DEBIT,CREDIT will merge for each account name in SHEET1 and the BALANCE column will subtract DEBIT from CREDIT.
I would macro to deal about 7000 rows for SHEET1 when brings data to make macro really fast when brings data.
should be like this
I hope finding assistance as DanteAmore did it in earlier .
in RESULT sheet there is no any data, but what I want making report based on sheet1
it should populate accounts names in column B by brings from row1 from column G to last column( every time add new account name so will insert new columns)
as to column C,D for DEBIT,CREDIT will merge for each account name in SHEET1 and the BALANCE column will subtract DEBIT from CREDIT.
I would macro to deal about 7000 rows for SHEET1 when brings data to make macro really fast when brings data.
ACCOUNTS DAILY.xlsm | ||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
A | B | C | D | E | F | G | H | I | J | K | L | M | N | O | P | Q | R | S | T | U | V | W | X | |||
1 | DATE | CONSTRAIN NO | DESCRIPTION | BALANCING CASE | TOTAL | BANK | SAFE | PURCHASE | SELLING | CAPITAL | PURCHASE RETURNING | SELLING RETURNING | RECEIVABLE | CREDITOR | ||||||||||||
2 | DEBIT | CREDIT | DEBIT | CREDIT | DEBIT | CREDIT | DEBIT | CREDIT | DEBIT | CREDIT | DEBIT | CREDIT | DEBIT | CREDIT | DEBIT | CREDIT | DEBIT | CREDIT | DEBIT | CREDIT | ||||||
3 | 11/08/2024 | 1 | DEPOSIT CAPITAL | BALANCED | 2,000.00 | 2,000.00 | 2,000.00 | 2,000.00 | ||||||||||||||||||
4 | 11/08/2024 | 2 | BUYING GOODS | BALANCED | 3,500.00 | 3,500.00 | 1,500.00 | 2,000.00 | 3,500.00 | |||||||||||||||||
5 | 11/08/2024 | 3 | SELLING GOODS | NOT BALANCED | 10,000.00 | 15,000.00 | 10,000.00 | 15,000.00 | ||||||||||||||||||
6 | 11/08/2024 | 4 | SELLING GOODS | BALANCED | 3,000.00 | 3,000.00 | 3,000.00 | 3,000.00 | ||||||||||||||||||
7 | 11/08/2024 | 5 | INCREASE CAPITAL | BALANCED | 15,000.00 | 15,000.00 | 15,000.00 | 15000 | ||||||||||||||||||
8 | 12/08/2024 | 6 | DECREASE CAPITAL | BALANCED | 3,000.00 | 3,000.00 | 3,000.00 | 3,000.00 | ||||||||||||||||||
sheet1 |
should be like this
ACCOUNTS DAILY.xlsm | |||||||
---|---|---|---|---|---|---|---|
A | B | C | D | E | |||
1 | ITEM | DEBIT | DEBIT | CREDIT | BALANCE | ||
2 | 1 | BANK | 10,000.00 | 1,500.00 | 8,500.00 | ||
3 | 2 | SAFE | 20,000.00 | 5,000.00 | 15,000.00 | ||
4 | 3 | PURCHASE | 3,500.00 | 0.00 | 3,500.00 | ||
5 | 4 | SELLING | 0.00 | 18,000.00 | -18,000.00 | ||
6 | 5 | CAPITAL | 3,000.00 | 17,000.00 | -14,000.00 | ||
7 | 6 | PURCHASE RETURNING | 0.00 | 0.00 | 0.00 | ||
8 | 7 | SELLING RETURNING | 0.00 | 0.00 | 0.00 | ||
9 | 8 | RECEIVABLE | 0.00 | 0.00 | 0.00 | ||
10 | 9 | CREDITOR | 0.00 | 0.00 | 0.00 | ||
RESULT |
Cell Formulas | ||
---|---|---|
Range | Formula | |
E2:E10 | E2 | =C2-D2 |
I hope finding assistance as DanteAmore did it in earlier .