LinkBack Thread Tools Search this Thread Display Modes
Prev Previous Post   Next Post Next
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1,071
Default Excel Question

Cathy
You will need VBA for that. This little macro will do that. As
written, it is assumed that your data is already filtered. I also assumed
your data is in Column A and you want the data copied to Column E. (the 5th
column). HTH Otto
Sub CopyFilter()
Dim rColA As Range
Dim i As Range
Set rColA = Range("A1", Range("A" & Rows.Count).End(xlUp))
For Each i In rColA.SpecialCells(xlCellTypeVisible)
i.Copy Cells(i.Row, 5)
Next i
End Sub

"Cathy" wrote in message
...
I want to past the total results of a filter command to a different column
but the same row. Now I can do it but only if the row are consec.
thank you and have a wonderful day and happy new year



 
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 VBA Question Doctorjones_md Excel Discussion (Misc queries) 0 December 8th 06 05:48 PM
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
Excel Question....Help !!!! matt guy Excel Discussion (Misc queries) 1 June 10th 05 08:55 PM
Statistical Excel Function Question within Excel 2000... Drew H Excel Worksheet Functions 3 October 31st 04 06:55 PM


All times are GMT +1. The time now is 12:10 AM.

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"