Hello Everyone,
Need your help to copy data from one sheet to another based on cell value.
For example, I have the following source data set and I am looking for a VBA solution which would copy the row value to a separate sheet as mentioned under the Target Sheet Name example.
i=
Need your help to copy data from one sheet to another based on cell value.
For example, I have the following source data set and I am looking for a VBA solution which would copy the row value to a separate sheet as mentioned under the Target Sheet Name example.
i=
Source Sheet Name = Master Sheet | |||||
Transaction Type | Reference Number | Dr Account No | Payment Narration | Beneficiary Name | Sheet Name |
Cheque | JAN123 | 123 | Rental | ABC | January |
Cheque | FEB123 | 456 | Stationery | XYZ | February |
NEFT | MAR123 | 789 | Food | XYZ | March |
NEFT | MAR456 | 587 | Travel | ABC | March |
Target Sheet Name = January | |||||
Transaction Type | Reference Number | Dr Account No | Payment Narration | Beneficiary Name | |
Cheque | JAN123 | 123 | Rental | ABC | |
Target Sheet Name = February | |||||
Transaction Type | Reference Number | Dr Account No | Payment Narration | Beneficiary Name | |
Cheque | FEB123 | 456 | Stationery | XYZ | |
Target Sheet Name = March | |||||
Transaction Type | Reference Number | Dr Account No | Payment Narration | Beneficiary Name | |
NEFT | MAR123 | 789 | Food | XYZ | |
NEFT | MAR456 | 587 | Travel | ABC |