MVP's Where Are Thou?

G

GS

Dave was thinking very hard :
Hi MVP's,

I have currently an issue that I am not getting any bites on , I would
really appreciate if you could please look at it and give me a macro
for it. The thread is at

http://groups.google.com/group/micr.../browse_thread/thread/b996276b58d58b2b?hl=en#

Thanks in advance,

Dave

I'm not a MVP but I can tell you that the reason you haven't had any
bites is because you did not answer the questions you were asked. go
back, read the replies, answer the questions, state how you want to
proceed, and see what results!
 
J

joeu2004

Subject: MVPs Where Are Thou?

I don't know why you need MVPs per se. Many non-MVPs are equally
helpful.

But to answer your question, see http://www.microsoft.com/communities/newsgroups/default.mspx.

The gist of it is.... The microsoft.* newsgroups are effectively
defunct. That is, MS no longer maintains them on its own servers,
which used to be the initial feed for the mirrored sites like Google
Groups.

The microsoft.* newsgroups that you find now may be disjoint, although
some newsservers share a common third-party feed.

In place of the MS newsserver, MS now only supports the Answers Forum
and some other technical websites. For Excel, see
http://social.answers.microsoft.com/Forums/en-US/category/officeexcel.

Most MVPs now service only those websites.
 
H

Harrison Hill

Hi MVP's,

I have currently an issue that I am not getting any bites on , I would
really appreciate if you could please look at it and give me a macro
for it. The thread is at

http://groups.google.com/group/microsoft.public.excel.programming/bro...

Thanks in advance,

Dave

You need to cycle through your worksheets:

For each sht in ThisWorkbook.Sheets

Next

Inside that loop you neet define on column of each each database. Use:

Set R1=Range("B1").CurrentRegion.Offset( 1, 0)
Set R1=R1.Resize(R1.Rows.Count - 1,6)

....where 6 represents any suitable column

Now do the same for R2 your csv fie.

For each c1 in R1.cells
For each c2 in R2.cells

Next
Next

....and use Offset to reach out to other data in other columns.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top