View Single Post
  #4   Report Post  
Posted to microsoft.public.excel.misc
Ron Coderre Ron Coderre is offline
external usenet poster
 
Posts: 2,118
Default I want to select every 10th line of data in an excel spreadsheet?

Here's one way

If A10:A200 contains your data,
with A10 the column heading (eg....MyData)

Try this:

A1: Crit
A2: =MOD(ROW(A11),10)=0

Note: That formula refers to the FIRST DATA cell, NOT the heading

Select A10:A200

From the Excel Main Menu:
<data<filter<advanced filter
Criteria Range: $A$1:$A$2
Click [OK]

Now only these data rows will be displayed:
20, 30, 40, 50, 60, 70, 80, 90, 100, 110, 120,
130, 140, 150, 160, 170, 180, 190, 200


Is that something you can work with?
--------------------------

Regards,

Ron
Microsoft MVP (Excel)
(XL2003, Win XP)

"Matloter" wrote in message
...
Is this possible?