I have a spreadsheet.
the 1st sheet is linked to external data that refreshes each month.
The 1st column is RegGroup which could change each month and the number of customer records for each rep could also vary.
Is there a macro that i can use to update other worksheets per RepGroup so that each worksheet only contains the RepGroup info?
the info contains:
RepGroup
CustomerName
Address
MTD
YTD
LMTD
LYTD
TLYTD
currently after i refresh the 1st sheet i have to copy & paste each RepGroup customer set into each individual worksheets per RepGroup.
i am not that good with Excel but i have seen sophisticated worksheets with marcos that update other sheets based on info from the "master" sheet, etc ...
i played a bit with the VLOOKUP
this is ok up until i get to this column
the result i get is 0 instead of the Shipping address that it should be pulling.
BUT this vlookup is not very efficient. some RepGroups has 100's of customer records and some have several hundreds.
is there an eaiser way?
the 1st sheet is linked to external data that refreshes each month.
The 1st column is RegGroup which could change each month and the number of customer records for each rep could also vary.
Is there a macro that i can use to update other worksheets per RepGroup so that each worksheet only contains the RepGroup info?
the info contains:
RepGroup
CustomerName
Address
MTD
YTD
LMTD
LYTD
TLYTD
currently after i refresh the 1st sheet i have to copy & paste each RepGroup customer set into each individual worksheets per RepGroup.
i am not that good with Excel but i have seen sophisticated worksheets with marcos that update other sheets based on info from the "master" sheet, etc ...
i played a bit with the VLOOKUP
Code:
=VLOOKUP("WILLIAM MOORE ASSOCIATES", A2:B22, 2, FALSE)
the result i get is 0 instead of the Shipping address that it should be pulling.
Code:
=VLOOKUP("WILLIAM MOORE ASSOCIATES", A2:F22, 6, FALSE)
BUT this vlookup is not very efficient. some RepGroups has 100's of customer records and some have several hundreds.
is there an eaiser way?