Hello Folks,
I neel little help to copy data from my Sheet(WrkingSheet) and Paste to TablebyMonth in another sheet (Diff) (didn't get attach option, so attached mini-sheet). Month name will provide in Inputbox, and acording to month provided, data of that particular month will go in the Table of that Month.
I have added the code in workbook but this is pasting data in month name sheet.
Please check.
I am new here so please help me if anywhere I am mistaking.
Below is WorkingData Sheet...
Below is Diff Sheet...
Require to paste data like this...
I neel little help to copy data from my Sheet(WrkingSheet) and Paste to TablebyMonth in another sheet (Diff) (didn't get attach option, so attached mini-sheet). Month name will provide in Inputbox, and acording to month provided, data of that particular month will go in the Table of that Month.
I have added the code in workbook but this is pasting data in month name sheet.
Please check.
I am new here so please help me if anywhere I am mistaking.
Below is WorkingData Sheet...
Book12.xlsm | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
A | B | C | D | E | F | G | H | I | |||
1 | |||||||||||
2 | |||||||||||
3 | Date | Des. | Value | ||||||||
4 | 01/04/2022 | ABC | 11000 | ||||||||
5 | 01/05/2022 | DEF | 12000 | ||||||||
6 | 03/06/2022 | GHI | 14000 | ||||||||
7 | 08/07/2022 | JKL | 15000 | ||||||||
8 | 08/06/2022 | MNO | 16200 | ||||||||
9 | 15/07/2022 | PQR | 5100 | ||||||||
10 | 12/05/2022 | STU | 2100 | ||||||||
11 | 04/05/2022 | VWX | 64201 | ||||||||
12 | 09/04/2022 | YZA | 54621 | ||||||||
13 | 25/04/2022 | BCD | 15000 | ||||||||
14 | 24/05/2022 | EFG | 30001 | ||||||||
15 | |||||||||||
16 | |||||||||||
17 | |||||||||||
18 | |||||||||||
19 | |||||||||||
20 | Working Sheet | ||||||||||
21 | |||||||||||
22 | |||||||||||
WrkingSheet |
Below is Diff Sheet...
Book12.xlsm | ||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
B | C | D | E | F | G | H | I | J | K | L | M | N | O | |||
1 | ||||||||||||||||
2 | Date | Des. | Value | Diff Value | Remark | |||||||||||
3 | ||||||||||||||||
4 | April | Table Name: Diff_April | ||||||||||||||
5 | DATA REQUIRE IN TABLE | |||||||||||||||
6 | AS LIKE RequireLikeThis | |||||||||||||||
7 | SHEET | |||||||||||||||
8 | ||||||||||||||||
9 | TOTAL | 0 | ||||||||||||||
10 | ||||||||||||||||
11 | May | Table Name: Diff_May | ||||||||||||||
12 | ||||||||||||||||
13 | ||||||||||||||||
14 | ||||||||||||||||
15 | ||||||||||||||||
16 | ||||||||||||||||
17 | ||||||||||||||||
18 | TOTAL | 0 | ||||||||||||||
19 | ||||||||||||||||
20 | June | Table Name: Diff_June | ||||||||||||||
21 | ||||||||||||||||
22 | ||||||||||||||||
23 | ||||||||||||||||
24 | ||||||||||||||||
25 | TOTAL | 0 | ||||||||||||||
26 | ||||||||||||||||
27 | ||||||||||||||||
28 | AND SO ON | |||||||||||||||
29 | ||||||||||||||||
Diff |
Cell Formulas | ||
---|---|---|
Range | Formula | |
G9,G25 | G9 | =SUM(G5:G8) |
G18 | G18 | =SUM(G12:G17) |
Require to paste data like this...
Book12.xlsm | ||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
B | C | D | E | F | G | H | I | J | K | L | M | N | O | |||
1 | ||||||||||||||||
2 | Date | Des. | Value | Diff Value | Remark | |||||||||||
3 | ||||||||||||||||
4 | April | Table Name: Diff_April | ||||||||||||||
5 | DATA REQUIRE IN TABLE | 01/04/2022 | ABC | 11000 | ||||||||||||
6 | AS LIKE THIS BY MONTH | 09/04/2022 | YZA | 54621 | ||||||||||||
7 | 25/04/2022 | BCD | 15000 | |||||||||||||
8 | WITH ADD OR DELETE | |||||||||||||||
9 | ROW IF REQUIRE | TOTAL | 80621 | |||||||||||||
10 | ||||||||||||||||
11 | May | Table Name: Diff_May | ||||||||||||||
12 | 01/05/2022 | DEF | 12000 | |||||||||||||
13 | 04/05/2022 | VWX | 64201 | |||||||||||||
14 | 12/05/2022 | STU | 2100 | |||||||||||||
15 | 24/05/2022 | EFG | 30001 | |||||||||||||
16 | ||||||||||||||||
17 | ||||||||||||||||
18 | TOTAL | 108302 | ||||||||||||||
19 | ||||||||||||||||
20 | June | Table Name: Diff_June | ||||||||||||||
21 | 03/06/2022 | GHI | 14000 | |||||||||||||
22 | 08/06/2022 | MNO | 16200 | |||||||||||||
23 | ||||||||||||||||
24 | ||||||||||||||||
25 | TOTAL | 30200 | ||||||||||||||
26 | ||||||||||||||||
27 | ||||||||||||||||
28 | AND SO ON | |||||||||||||||
29 | ||||||||||||||||
RequireLikeThis |
Cell Formulas | ||
---|---|---|
Range | Formula | |
G9,G25 | G9 | =SUM(G5:G8) |
G18 | G18 | =SUM(G12:G17) |