insert a new column based on conditions

BORUCH

Well-known Member
Joined
Mar 1, 2016
Messages
548
Office Version
  1. 365
Platform
  1. Windows
hi

i would like an excel macro that would insert a new column to the left of the selected cell only if its not blank for ex,

if i'm selecting cell A1 and cell B1 is blank then it should do nothing, if cell B1 has data in it then it should insert a new column in between column A and column B
 

Excel Facts

Copy a format multiple times
Select a formatted range. Double-click the Format Painter (left side of Home tab). You can paste formatting multiple times. Esc to stop
Try this:
Code:
Sub MyColInsert()
    If ActiveCell.Offset(0, 1) <> "" Then
        Columns(ActiveCell.Offset(0, 1).Column).Insert Shift:=xlToRight, CopyOrigin:=xlFormatFromLeftOrAbove
    End If
End Sub
 
Upvote 0
I would also like that if it needs to insert a column, it should make sure that the column inserted is formatted as general not as text or any other format

Thanks
 
Upvote 0
Pretty simple modification:
Code:
Sub MyColInsert()
    If ActiveCell.Offset(0, 1) <> "" Then
        Columns(ActiveCell.Offset(0, 1).Column).Insert Shift:=xlToRight, CopyOrigin:=xlFormatFromLeftOrAbove
        Columns(ActiveCell.Offset(0, 1).Column).NumberFormat = "General"
    End If
End Sub
 
Upvote 0

Forum statistics

Threads
1,223,911
Messages
6,175,325
Members
452,635
Latest member
laura12345

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