I have a spreadsheet that is dumped from a financial package.
It lists name, address, and phone details that I want to extract from Sheet1 and paste into a layout (that is easier to read) on a new sheet called Client Listings.
I have developed code that does the following:
- Creates a new sheet Client Listings
- Creates headings in cells A3, B3, C3 and D3 – Name , Address , Phone Number , Mobile Number
- Moves to Sheet1 finds the first instance of Name (changes it to FoundName so that it won’t search there again), copies the cell to the right of it and pastes the result in Client Listings in next cell below.
- Repeats the step above for next Name on Sheet1 and pastes result below previous pasted name on Client Listings .
[/list]I don’t know how to tell it to stop the search because my code currently gets into a loop. It gives an error message that I assume that it can’t find any more instances of Name .I realise that I require a Loop but am unsure of how to get the code to do the names and then move on to the addresses.
Any suggestions?