Hi Java,

If your specifications are vague, then I can only speculate and
simplify...

I assumed first row contains column headings, so I start on row 2 (you
can change that if necessary) in both sheets...
I assumed the numbers to match are located in both sheets in the first
column [if not, you can change that e.g. if in the sheet EST column 3
then "nNumberB = Cells(nRowB, 3).Value ]
I assumed you want data from the secund column from EST to get copied
to QB (secund column) in case of a match... if there is more, then add
such statements as
  cValue1 = Cells(nRowB, 3)
  cValue2 = Cells(nRowB, 4)
  etc.
and
  Cells(nRowA, 3) = cValue1
  Cells(nRowA, 4) = cValue2
etc.

Or you could send a consistent test workbook and I'll further write it
for you...

Kind regards,

Paul Willekens

-- 
----------------------------------------------------------------------------------
Some important links for excel users:
1. Follow us on TWITTER for tips tricks and links : 
http://twitter.com/exceldailytip
2. Join our Facebook Group @ http://www.facebook.com/group.php?gid=287779555678
3. Excel tutorials at http://www.excel-macros.blogspot.com
4. Learn VBA Macros at http://www.quickvba.blogspot.com
5. Excel Tips and Tricks at http://exceldailytip.blogspot.com
 
To post to this group, send email to excel-macros@googlegroups.com

<><><><><><><><><><><><><><><><><><><><><><>
HELP US GROW !!

We reach over 6,800 subscribers worldwide and receive many nice notes about the 
learning and support from the group.Let friends and co-workers know they can 
subscribe to group at http://groups.google.com/group/excel-macros/subscribe

Reply via email to