I need to find the last column in a worksheet and then find the last row in that particular column. For last column I am using this:
lastcol = .Cells(1, .Columns.count).End(xlToLeft).Column
last_row = Range((Cells(Rows.count), lastcol).Find("*", after:=r, LookIn:=x1values, lookat:=x1part, SearchOrder:=xlByColumns, SearchDirection:=xlPrevious, MatchCase:=False)
Here is snapshot of the worksheet:
Can some also help me with putting all the data I want to save in an array 2 dimensional and then pasting the data on a Excel sheet?