Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
RJH RJH is offline
external usenet poster
 
Posts: 44
Default Another question..

You guys have helped me in a big way each time I have a question. I
appreciate it!
Here's another question...
As I've mentioned before, we have a sheet which is used to track orders from
various vendors.
What I would like to do now is take each vendor from sheet1 and enter them
into a "Vendor Specific" sheet.
How would I search a column (say 'A') for a specific vendor and then copy
that row(s) to the sheet set up for that particular vendor? I could link
this action to a button and say, at the end of the day update the 'Vendor
Sheets'.

If you could get me started in the right direction it would be greatly
appreciated again!!

Thanks!!

RJH


  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 11,272
Default Another question..


Something like this

On Error Resume Next
Set oCell = Worksheets("Sheet1").Range("A:A").Find("abc")
On Error GoTo 0
If Not oCell Is Nothing Then
oCell.EntireRow.Copy Destination:=Range("A1")
End If

--

HTH

Bob Phillips
... looking out across Poole Harbour to the Purbecks
(remove nothere from the email address if mailing direct)

"RJH" wrote in message
...
You guys have helped me in a big way each time I have a question. I
appreciate it!
Here's another question...
As I've mentioned before, we have a sheet which is used to track orders

from
various vendors.
What I would like to do now is take each vendor from sheet1 and enter them
into a "Vendor Specific" sheet.
How would I search a column (say 'A') for a specific vendor and then copy
that row(s) to the sheet set up for that particular vendor? I could link
this action to a button and say, at the end of the day update the 'Vendor
Sheets'.

If you could get me started in the right direction it would be greatly
appreciated again!!

Thanks!!

RJH




Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Excel 2007 Macro/VB Question DDE Question MadDog22 Excel Worksheet Functions 1 March 10th 10 01:47 AM
where can I see my question and answer? Yesterday I ask a question IP Excel Discussion (Misc queries) 2 May 10th 08 04:08 PM
Odd Question Roxanne Excel Discussion (Misc queries) 4 July 12th 07 12:16 AM
Newbie Question - Subtraction Formula Question [email protected] Excel Discussion (Misc queries) 3 May 5th 06 05:50 PM
The question is an excel question that I need to figure out howto do in excel. Terry Excel Worksheet Functions 3 January 23rd 06 06:22 PM


All times are GMT +1. The time now is 02:43 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"