select various cells in one column and move to the next column

Mldeuser

Well-known Member
Joined
Dec 27, 2008
Messages
573
Office Version
  1. 365
Platform
  1. Windows
Hello

I have a problem. I would like to select various cells in one column and then move them to the next column in the same row.

The size of the spreadsheet will change with each use.

Example: the words Balance Forward Appear in cells I11, I23, I34, I36, I42. and so on. They need to be in column J (same cell numbers).

I googled this and could not find a solution that worked.

Any help would be greatly appreciated.

Thank you
Mark
 
The only columns that have anything in the rows with Balance Forward is A, D (these need to stay) and L which needs to move to column M
 
Upvote 0

Excel Facts

Did you know Excel offers Filter by Selection?
Add the AutoFilter icon to the Quick Access Toolbar. Select a cell containing Apple, click AutoFilter, and you will get all rows with Apple
In that case how about
Code:
Sub Mldeuser()
   With Range("I2", Range("I" & Rows.Count))
      .Replace "Balance Forward", True, xlWhole, , False, , False, False
      With .SpecialCells(xlConstants, xlLogical)
         .Insert xlToRight
         .Value = "Balance Forward"
      End With
   End With
End Sub
 
Upvote 0
You're welcome & thanks for the feedback
 
Upvote 0
Can I bother you again with one more question. Can this be modified to only move the value found in Column L to Column M while leaving Balance Forward in Column I
 
Upvote 0
Like
Code:
Sub Mldeuser()
   With Range("I2", Range("I" & Rows.Count))
      .Replace "Balance Forward", True, xlWhole, , False, , False, False
      With .SpecialCells(xlConstants, xlLogical)
         .Offset(, 1).Insert xlToRight
         .Value = "Balance Forward"
      End With
   End With
End Sub
 
Upvote 0
My apologies for this instance there are values in columns N and O that need to stay
 
Upvote 0
That will need a different approach, so best start a new thread, giving all the details
 
Upvote 0

Forum statistics

Threads
1,214,985
Messages
6,122,606
Members
449,089
Latest member
Motoracer88

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