Hi!
So we needed to export about 750 customers data into another system. About 67k rows in total
There are about 9 columns and 60-90 rows for each customer, depending on how much data we have for each customer.
The only data i actually needed to extract for each customer is the Customer number, Company name, Transporter and Alternative
I've been messing around with vba crashing excel and failing to excecute as I want, for a couple of days now trying to get the data into a table looking like this:
Since I'm not sure what to search for google is not helping much.
How would you approach it?
So we needed to export about 750 customers data into another system. About 67k rows in total
There are about 9 columns and 60-90 rows for each customer, depending on how much data we have for each customer.
Customer number | |||||
835 | Company A | ... | |||
Some road | ... | phone | 035-123456 | ||
some town | ... | phone 2 | 070-354786 | ||
... | Fax: | 020-159632 | |||
... | ... | ... | ... | ... | ... |
Referens: | sam smith | ... | |||
VAT-nr: | 3265-6363 | ... | Alternative: | Data 1 | |
... | ... | ... | ... | ... | ... |
Transporter: | DHL | ... | |||
... | ... | ... | ... | ... | ... |
256 | Some other Company | ... | |||
... | ... | ... | ... | ... | ... |
512 | Company B | ... |
I've been messing around with vba crashing excel and failing to excecute as I want, for a couple of days now trying to get the data into a table looking like this:
835 | Company A | DHL | Data 1 |
256 | Some other Company | DB Schenker | Data 2 |
512 | Company B | DHL | Data 3 |
Since I'm not sure what to search for google is not helping much.
How would you approach it?