=ROW()-1 to assign numbers to several hundreds of rows, is there a macro that can help me cut the entire row leaving column A (Row #) out?

GabyS2023

New Member
Joined
Nov 27, 2023
Messages
7
Office Version
  1. 365
Platform
  1. Windows
I apologize in advance if not clear explanation,

I'm using =ROW()-1 to assign numbers to several hundreds of rows, is there a macro that can help me cut the entire row leaving column A out without Ctrl + Shift? this is to paste in a different sheet of the workbook. thank you :)

1701120848109.png
 

Excel Facts

Why are there 1,048,576 rows in Excel?
The Excel team increased the size of the grid in 2007. There are 2^20 rows and 2^14 columns for a total of 17 billion cells.
i don't know this is what you want or not:
VBA Code:
Sub test()
    Dim lr As Long
    Dim cll As Range
    lr = Sheet1.Cells(Rows.Count, 2).End(xlUp).Row ' find last row of colum b in sheet data
    If lr < 2 Then Exit Sub
    For Each cll In Sheet1.Range("B2:B" & lr)
        Sheet1.Range(cll, Sheet1.Cells(cll.Row, Columns.Count).End(xlToLeft)).Cut Destination:=Sheet2.Range(cll.Address) 'cut from column B to last column include data and paste to sheet2, change it to your
    Next cll
End Sub
 
Upvote 0

Forum statistics

Threads
1,215,703
Messages
6,126,314
Members
449,308
Latest member
Ronaldj

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