Home |
Search |
Today's Posts |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
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 |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Excel VBA Question | Excel Discussion (Misc queries) | |||
Newbie Question - Subtraction Formula Question | Excel Discussion (Misc queries) | |||
The question is an excel question that I need to figure out howto do in excel. | Excel Worksheet Functions | |||
Excel Question....Help !!!! | Excel Discussion (Misc queries) | |||
Statistical Excel Function Question within Excel 2000... | Excel Worksheet Functions |