Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8
Default Certain info from one workbook to another

I have a Workbook A. I want to take certain rows and display them in order
in Workbook B.

The rows have 25 columns. If I take all rows that have 302 in Column B how
can I display those row contents in an entirely different workbook just
containing 302 info?
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 22,906
Default Certain info from one workbook to another

DataFilterAutofilter for 302 on Column B

Copy and paste the visible results to the other workbook.


Gord Dibben MS Excel MVP

On Wed, 18 Apr 2007 14:10:02 -0700, ihatetheredskins
wrote:

I have a Workbook A. I want to take certain rows and display them in order
in Workbook B.

The rows have 25 columns. If I take all rows that have 302 in Column B how
can I display those row contents in an entirely different workbook just
containing 302 info?


  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8
Default Certain info from one workbook to another



"Gord Dibben" wrote:

DataFilterAutofilter for 302 on Column B

Copy and paste the visible results to the other workbook.


Gord Dibben MS Excel MVP

On Wed, 18 Apr 2007 14:10:02 -0700, ihatetheredskins
wrote:

I have a Workbook A. I want to take certain rows and display them in order
in Workbook B.

The rows have 25 columns. If I take all rows that have 302 in Column B how
can I display those row contents in an entirely different workbook just
containing 302 info?


Yes, I can do this. But is there a way that it can be automated with a formula instead of manually doing this?

  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 22,906
Default Certain info from one workbook to another

Turn on the macro recorder and record yourself filtering, copying visible cells
and pasting to another workbook.

You will get something like this.

Sub Macro3()
'
' Macro3 Macro
' Macro recorded 04-19-2007 by Gord Dibben
'

'
Columns("A:F").Select
Selection.AutoFilter
Selection.AutoFilter Field:=3, Criteria1:="1Night"
Selection.SpecialCells(xlCellTypeVisible).Select
Selection.Copy
Workbooks.Open Filename:= _
"C:\program files\microsoft office\exceldata\copyfilter.xls"
ActiveSheet.Paste
Application.CutCopyMode = False
Range("A1").Select
End Sub


Gord

On Thu, 19 Apr 2007 07:56:01 -0700, ihatetheredskins
wrote:



"Gord Dibben" wrote:

DataFilterAutofilter for 302 on Column B

Copy and paste the visible results to the other workbook.


Gord Dibben MS Excel MVP

On Wed, 18 Apr 2007 14:10:02 -0700, ihatetheredskins
wrote:

I have a Workbook A. I want to take certain rows and display them in order
in Workbook B.

The rows have 25 columns. If I take all rows that have 302 in Column B how
can I display those row contents in an entirely different workbook just
containing 302 info?


Yes, I can do this. But is there a way that it can be automated with a formula instead of manually doing this?


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
Linking workbook info to excel calendar S Willingham Excel Discussion (Misc queries) 0 March 29th 07 03:58 AM
How do I set up a workbook that the worksheets update info Mike Excel Worksheet Functions 0 February 15th 06 12:23 AM
Sharing Workbook Info message ? Jim May Excel Discussion (Misc queries) 0 December 6th 05 10:28 PM
How can I link one cell to a list of info in another workbook? PaulGrowns1 Excel Discussion (Misc queries) 3 November 24th 05 09:02 PM
How do you find info in a workbook? Rick Fabrizi Excel Discussion (Misc queries) 5 October 10th 05 06:58 PM


All times are GMT +1. The time now is 03:25 PM.

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

About Us

"It's about Microsoft Excel"