AllyGraham
New Member
- Joined
- Oct 6, 2014
- Messages
- 18
Hi, I am in need of some help, and I hope to explain it to the best of my ability.
What I have achieved in sheet 'Duplicates list' is a list of duplicate email addresses and the contact details for that, from multiple records, and the row number that entry occupies in 'Master List'. I can trigger VBA and macros upon selection change event, not an issue, but what I am trying to achieve is that when (in below simple example) cell C3 is selected, it will copy the cell value to (in this case) C10, C20, C50, and C65 in 'Master List'.
I will allow the same process for selecting a cell from column D, E, etc. to their respective cells.
I intend to have a confirmation message box (yes/no) to confirm the action upon the selection change event being triggered, again this is not an issue for me, I am just a bit stuck on how to drive the copy and paste to the rows listed in reference to the same email address, when the count of such records may vary from 2 to 20.
This has all come about as we are bringing together many separate contact lists and are needing to de-duplicate and check valid details for them, which once we have merged the entries together based on deciding what is the correct details to use, we can delete the new full duplicates. After this, the list will be imported into our system.
I hope this makes sense, and someone can help me.
What I have achieved in sheet 'Duplicates list' is a list of duplicate email addresses and the contact details for that, from multiple records, and the row number that entry occupies in 'Master List'. I can trigger VBA and macros upon selection change event, not an issue, but what I am trying to achieve is that when (in below simple example) cell C3 is selected, it will copy the cell value to (in this case) C10, C20, C50, and C65 in 'Master List'.
A | B | C | D | E | |
1 | Row | Email Address | First Name | Last Name | Company Name |
2 | 10 | info@sampletext.co.uk | A. Non | ||
3 | 20 | info@sampletext.co.uk | Anon | ||
4 | 50 | info@sampletext.co.uk | blank | Sample Text Ltd. | |
5 | 65 | info@sampletext.co.uk | Anon | ||
6 | |||||
7 | 15 | office@company.com | John | Smith | |
8 | 19 | office@company.com | John | Simpson | Company PLC |
I will allow the same process for selecting a cell from column D, E, etc. to their respective cells.
I intend to have a confirmation message box (yes/no) to confirm the action upon the selection change event being triggered, again this is not an issue for me, I am just a bit stuck on how to drive the copy and paste to the rows listed in reference to the same email address, when the count of such records may vary from 2 to 20.
This has all come about as we are bringing together many separate contact lists and are needing to de-duplicate and check valid details for them, which once we have merged the entries together based on deciding what is the correct details to use, we can delete the new full duplicates. After this, the list will be imported into our system.
I hope this makes sense, and someone can help me.