View Single Post
  #5   Report Post  
bj
 
Posts: n/a
Default

I think a macro would do this best something like
if the product list were in B1:AA1
and the store list were in A2:A100

if the data sheet is clear below 110

sub cck()
rr=110
for st = 2 to 100
for prod = 2 to 27
if cell(prod,st)="incorrect" then
cells(rr,1)=cells(st,1)
cells(rr,2)=cells(1,prod)
rr = rr+1
end if
next prod
next st
end sub


"Tibbs" wrote:


I have a sheet, with a list of products across the top and a list of
stores down the side.

Against the rows and columns there are two possible data values,
Correct and Incorrect.

What I am trying to do is to return a list of all the Store and Product
combinations that cross reference with Incorrect.

My experience of array formulae is vitually zero, and I have a feeling
that something clever with MATCH may well do the trick.

Can anybody help?

Many thanks,

Chris


--
Tibbs
------------------------------------------------------------------------
Tibbs's Profile: http://www.excelforum.com/member.php...o&userid=15947
View this thread: http://www.excelforum.com/showthread...hreadid=380847