Also, the code I poste is assuming that you have a header row.
Example:
Row 1 - Header
Row 2 - 28th Street Market
Row 3 - 051911 11/15/04
If you do not have a header row, simply change the i variable in the
For Next loop to a 2.
> Does it alternate like that all the way down? Vendor name then
> market? If so, here is one possibility (not tested):
[quoted text clipped - 21 lines]
> >
> > Thanks a lot for your help
andresg1975 - 21 Sep 2007 21:16 GMT
It does not alternate like that, i would appreciate if you have any other
idea of doing it
> Also, the code I poste is assuming that you have a header row.
> Example:
[quoted text clipped - 30 lines]
> > >
> > > Thanks a lot for your help
JW - 21 Sep 2007 21:35 GMT
Need more info. Need a way to identify the vendor records from the
non-vendor records.
> It does not alternate like that, i would appreciate if you have any other
> idea of doing it
[quoted text clipped - 33 lines]
> > > >
> > > > Thanks a lot for your help
andresg1975 - 21 Sep 2007 21:46 GMT
is there a way to create a macro that,
lets say look in column a for blank cells, and clear the contents of column b
> Need more info. Need a way to identify the vendor records from the
> non-vendor records.
[quoted text clipped - 35 lines]
> > > > >
> > > > > Thanks a lot for your help
JW - 21 Sep 2007 21:50 GMT
Sub foofinator()
lRow = Range("b65536").End(xlUp).Row
For i = 2 To lRow
If IsEmpty(Cells(i, 1)) Then _
Cells(i, 2).ClearContents
Next
End Sub
> is there a way to create a macro that,
> lets say look in column a for blank cells, and clear the contents of column b
[quoted text clipped - 38 lines]
> > > > > >
> > > > > > Thanks a lot for your help
andresg1975 - 21 Sep 2007 22:00 GMT
Thanks a lot for your help. That works perfect!
> Sub foofinator()
> lRow = Range("b65536").End(xlUp).Row
[quoted text clipped - 45 lines]
> > > > > > >
> > > > > > > Thanks a lot for your help