Related:         
- Excel row removal/selection
 - Saints row 2 cheats - Guide
 - Excel mod apk for pc - Download - Spreadsheets
 - Search baron removal - Guide
 - Kernel for excel repair - Download - Backup and recovery
 - Windows 7 genuine advantage removal tool - Download - Cleaning and optimization
 
3 responses
                
        
                    Ivan-hoe
    
        
                    Posts
            
                
            433
                
                            Registration date
            Saturday February 16, 2008
                            Status
            Member
                            Last seen
            October 17, 2008
            
            
                    110
    
    
                    
Jul 14, 2008 at 04:39 PM
    Jul 14, 2008 at 04:39 PM
                        
                            
                    Hello, 
I do not think there is any solution with filters ; using formulas would be quite complicated. I suggest you use the macro below, which selects every 25th row from row 2.
Ivan
            I do not think there is any solution with filters ; using formulas would be quite complicated. I suggest you use the macro below, which selects every 25th row from row 2.
Sub Kateo()
    Dim MyRange As Range, i As Integer
    Set MyRange = Rows(2)
    For i = MyRange.Row To Cells(Rows.Count, "A").End(xlUp).Row Step 25
        Set MyRange = Union(MyRange, Rows(i))
    Next i
    MyRange.Select
End Sub
Ivan
                        
                    I can send you sheet to extract every nth or 25 th row of the total records.
Please reply me if you need it.
            Please reply me if you need it.
        
    
    
    
    
Nov 10, 2008 at 02:53 AM
I'm trying to group values of column 2 based on column 4 values on sheet A (distinct values from column 4 - matching values from column 2).
These found values should be concatenated on sheet B according to the same column 4 value.
Any suggestions?
Thanks, Elja
May 21, 2009 at 01:26 PM