I need a VBA to solve the following.
Spreadsheet "customers" has seven columns as follows (from A to G):
(A) Customer Name, (B)CustID C(Address1) D(Address2) E(Address3) F(Postcode) G(Contact Name). The rows are for each customer. Not all of the cells are populated (usually address 1 or 2).
Sheet "Data Entry" uses a dropdown list at B2 that allows selection of customer name. B3 to B8 uses Vlookups to display the remaining details. Where there are blank cells on the "customers" sheet, these show as 0 on the Vlookup data.
What I'm trying to do is to copy the customer data from the Data Entry sheet (B2 to B8) but to miss out any of the blanks (or 0s). This will then be pasted onto another sheet (Analysis) From A1 to A whatever
So for example, if I have column B on Data Entry Sheet:
B2 - Acme Co (from a dropdown)
B3 - AcmeID123
B4 - Acme House
B5 - Acme Street
B5 - 0
B6 - AC11ME
B7 - Mr Acme
I would want this duplicated onto another sheet (Analysis) as follows:
A1 Acme Co
A2 AcmeID123
A3 Acme House
A4 Acme Street
A5 AC11ME
A6 Mr Acme
I know that's probably a really long winded way of explaining a simple problem, so apologies - simple describes me!
Bookmarks