find last column

  1. S

    Go to cell in very last column of the active row

    I found a really wonderful vba from alansidman - "Go to cell in specific column of the active row" (see below) Sub JumpToFront() Dim r As Long r = ActiveCell.Row Range("U" & r).Select End Sub But I need some code which goes to the very last column in the active row (not the...
  2. X

    Excel Macro to copy data in cell to multiple cells in the same row

    Hi I am a beginner in VBA scripting but I am working on a sheet where I want to copy data in one cell to multiple cells in the same row as long as it is not empty but separate the two data by a comma and do this through out the table Before Macro...
  3. K

    Can get to final column

    Hi I am having problems with some code finding the last column in a set of data. Currently the coding below takes me to the one before the last column, I'm not sure why, but the 'Resize(, Col) seems to be the culprit. Does anyone have any ideas how to get this so that it will find the last...
  4. J

    Find last used column,then find every 3rd cell in that column

    I need to find the last used column in my spreadsheet which i already have a working code for: Sub Button2_Click() Dim LastRow As Long, LastColumn As Integer LastRow = ActiveSheet.UsedRange.Rows(ActiveSheet.UsedRange.Rows.Count).Row LastColumn =...
  5. D

    Finding last column & inserting

    I have this working for rows in the same way I'm trying to get it to work for columns now, but I am getting an error and unsure what I've missed. Summary.Select FinalCol = Summary.Range("IV5").End(xlToLeft).Column - 2 Columns(FinalCol).Select ActiveCell.EntireColumn.Select vCols =...

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