Code not doing anything (no errors)

Status
Not open for further replies.

CluelessAboutExcel

New Member
Joined
Dec 6, 2021
Messages
5
Office Version
  1. 2016
Platform
  1. Windows
Hi,

Sorry for two posts about the same thing, won't let me delete the first one. I want to create a VBA code so that I can look up the string "Category 1" and use it as a reference to add a certain number of columns based on another cells value. The new cell values are to have the headings "Category 2", "Category 3", etc.

Currently, I have used the .Find function to locate "Category 1" and then offset columns from there using the .find as a range (see below). However, when I run the macro nothing changes to my spreadsheet. I was wondering whether anybody could spot what is happening here!

Any help would be much appreciated.

See the code below:

VBA Code:
Sub Add_Column()

    Dim aCount As Integer
    Dim a As Integer
    Dim c As Range

    With Worksheets(3)
        aCount = .Range("B12").value
        set c = .Cells.Find("Category 1", LookIn:=xlvalues)

        For a = 1 To aCount - 1
            c.Offset(0, 1).Insert Shift := xlToRight
            .Range("G15").Value = "Category" & Str(aCount - a + 1)
        Next a

    End With

End Sub
 

Excel Facts

Workdays for a market open Mon, Wed, Friday?
Yes! Use "0101011" for the weekend argument in NETWORKDAYS.INTL or WORKDAY.INTL. The 7 digits start on Monday. 1 means it is a weekend.
Duplicate to: Insert column based on cell string value

In future, please do not post the same question multiple times. Per Forum Rules (#12), posts of a duplicate nature will be locked or deleted.

In relation to your question here, I have closed this thread so please continue in the linked thread. If you do not receive a response, you can "bump" it by replying to it yourself, though we advise you to wait 24 hours before doing so, and not to bump a thread more than once a day.
 
Upvote 0
Status
Not open for further replies.

Forum statistics

Threads
1,214,827
Messages
6,121,809
Members
449,048
Latest member
greyangel23

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