#1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 11
Default Filtering data

I have a large spreadsheet and I want to filter by chosing every 9 rows,
i.e., row 1, 9, 18, etc....Help, is this possible?
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8,856
Default Filtering data

In a helper column you could enter a formula like:

=MOD(ROW(),9)

and copy this down. This will give you repeating patterns of 1 to 8
then 0 to 8, so to select the 9th, 18th, 27th row etc you would select
0 from the filter drop-down.

Hope this helps.

Pete

On Mar 2, 11:20 pm, S. Kissing
wrote:
I have a large spreadsheet and I want to filter by chosing every 9 rows,
i.e., row 1, 9, 18, etc....Help, is this possible?



  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2,886
Default Filtering data

Hi

Use a spar column as a helper column. Enter the formula
=MOD(ROW(),9)=0
and copy down

DataFilterAutofilter and filter for TRUE on the new column

--
Regards

Roger Govier


"S. Kissing" wrote in message
...
I have a large spreadsheet and I want to filter by chosing every 9
rows,
i.e., row 1, 9, 18, etc....Help, is this possible?



  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 9,101
Default Filtering data

Every 9 rows is not 1, 9, 18

It is 1, 10, 19, ...


You can use this macro to hide rows

Sub HideRows()
'
' Macro1 Macro
' Macro recorded 3/2/2007
'

'
For i = 0 To 1000 Step 10

Rows("2:10").Offset(rowoffset:=i, columnoffset:=0).Select
Selection.EntireRow.Hidden = True
Next i
End Sub


"S. Kissing" wrote:

I have a large spreadsheet and I want to filter by chosing every 9 rows,
i.e., row 1, 9, 18, etc....Help, is this possible?

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
Help with Filtering data pooja Excel Discussion (Misc queries) 3 February 1st 07 09:04 PM
filtering row data Gary''s Student Excel Worksheet Functions 3 October 26th 05 07:03 PM
filtering data Alex New Users to Excel 8 August 23rd 05 10:31 PM
Filtering out Data Jo Davis Excel Discussion (Misc queries) 1 July 7th 05 11:34 AM
Data Filtering jnorton Excel Discussion (Misc queries) 2 December 22nd 04 05:53 PM


All times are GMT +1. The time now is 10:05 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"