Urgent..TRICKY..How to find last entries of each row "Having different ranges"

Gauraog

New Member
Joined
Jan 11, 2014
Messages
12
Hi All, Im a begainer to VBA.

I like to to find a last 3 entries of each row .

eg. I have a Row A2:N2 which contains data.....similarly I have a data in cell A3toG3........A4:Z4...and so on till the last row which has data.

Data will be always start from Column A but not fixed where will it be ending. (Actually it will keep changing)

Basically each row will have data but its not fixed in which column it will be ending.

I want to copy last 3 entries of each row which has data. Can someone please give me a VBA code to perform this activity. Quick response much appreciated.
 

Excel Facts

What is the last column in Excel?
Excel columns run from A to Z, AA to AZ, AAA to XFD. The last column is XFD.
Basically each row will have data but its not fixed in which column it will be ending.
What kind of data are we talking about... numbers or text?

If text, will it be one word or could it be multiple words?
 
Upvote 0
What kind of data are we talking about... numbers or text?

If text, will it be one word or could it be multiple words?

It will contain text or numbers.....
For example Range A2:I2 has below data. Similarly A3:F3....

twistTTtwist36moUU100
twistTTaccess100

<colgroup><col style="width:48pt" span="9" width="64"> </colgroup><tbody>
</tbody>


Sorry as I dont know how to attach excel... so writing in above format.
Thanks.
 
Last edited:
Upvote 0
This won't use VBA but will output the data for you. If you can insert 3 columns to the left of column A so that A now becomes D, B becomes E and so forth, you can paste this formula into A2. Fill over to C2 and then fill down as far as you need. It will return the pen-penultimate, penultimate and ultimate data in each row, respectively.

Code:
=INDEX(OFFSET($D2,0,COUNTA($E2:$XFD2)-2,1,3),0,(COLUMN(A$1)))

This assumes that all data starts in column E (or B, before inserting 3 over) and that there are no blanks in the data.
 
Last edited:
Upvote 0
It will contain text or numbers.....
For example Range A2:I2 has below data. Similarly A3:F3....

twistTTtwist36moUU100
twistTTaccess100

<tbody>
</tbody>


Sorry as I dont know how to attach excel... so writing in above format.
Thanks.

You will run the following code with your data sheet active, since you did not say where you wanted the output to go, I wrote it to Sheet2

Code:
Sub GetLastThreeValuesPerRow()
  Dim R As Long, C As Long, LastRow As Long, LastColumn As Long, Counter As Long
  Dim Values As Variant, ArrIn As Variant, ArrOut As Variant
  LastRow = Cells(Rows.Count, "A").End(xlUp).Row
  LastColumn = Cells.Find(What:="*", SearchOrder:=xlByColumns, _
               SearchDirection:=xlPrevious, LookIn:=xlValues).Column
  ArrIn = Range("A1", Cells(LastRow, LastColumn))
  ReDim ArrOut(1 To UBound(ArrIn), 1 To 3)
  For R = 1 To UBound(ArrIn)
    Counter = 3
    For C = LastColumn To 1 Step -1
      If Counter = 0 Then Exit For
      If Len(ArrIn(R, C)) Then
        ArrOut(R, Counter) = ArrIn(R, C)
        Counter = Counter - 1
      End If
    Next
  Next
  Sheets("Sheet2").Range("A1").Resize(UBound(ArrOut), 3) = ArrOut
End Sub
 
Upvote 0
Is that all you want to do is copy the data? Or do you want to output the data somewhere?

Basically I want to copy last 3 entries of each row. I'll use this data for my further analysis. I want a macro that will do this task and paste these values to lets say in column X, Y and Z on same sheet.

Thanks
 
Upvote 0
Should be less efficient especially over large ranges than Rick's array code in post #6 but seeing as I had it wrote B4 i saw Rick's post then I might as well post the code below here

Rich (BB code):
Sub MightAsWell()
    Dim c As Range, i As Long
    For Each c In Range("A1:A" & Range("A" & Rows.Count).End(xlUp).Row)
        i = Cells(c.Row, Columns.Count).End(xlToLeft).Column
        Range(Cells(c.Row, i - 2), Cells(c.Row, i)).Copy Sheets("Sheet2").Range("a" & Rows.Count).End(xlUp).Offset(1)
    Next
End Sub
 
Upvote 0
Small extension to above.....

I want that macro to be run for each sheet in workbook and values to be pasted in column lets say column P, Column Q and Column R of same sheet.

Can you please help on this?
 
Upvote 0
Try
Code:
Sub TryAgain()
    Dim c As Range, i As Long, WS As Worksheet
    For Each WS In ActiveWorkbook.Worksheets
        With WS
            For Each c In .Range("A1:A" & .Range("A" & Rows.Count).End(xlUp).Row)
                i = .Cells(c.Row, Columns.Count).End(xlToLeft).Column
                If i > 2 Then
                    .Range(.Cells(c.Row, i - 2), .Cells(c.Row, i)).Copy .Cells(c.Row, "P")
                End If
            Next
        End With
    Next
End Sub
 
Upvote 0

Forum statistics

Threads
1,216,246
Messages
6,129,700
Members
449,528
Latest member
Paula03

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top