VBA insert unique formula into discrete cells

Deliverable7

New Member
Joined
Apr 9, 2016
Messages
33
HI Team

I have built the following code to insert a number of unique formula into discrete cells which works fine however my OCD is working on me to simplify the code (the code below is a small sample of what I needs to develop). Can you please show me how the code can be better organized/simplified.

VBA Code:
  Range("10:10").Insert
    Sheets("Gantt Inputs").Cells(10, 2) = "'BCI'!$C$55"
    Sheets("Gantt Inputs").Cells(10, 3) = "BCI'!$C6"
    Sheets("Gantt Inputs").Cells(10, 5) = "BCI'!$C16"
    Sheets("Gantt Inputs").Cells(10, 6) = "BCI'!$C66"

Thanks
 

Excel Facts

What did Pito Salas invent?
Pito Salas, working for Lotus, popularized what would become to be pivot tables. It was released as Lotus Improv in 1989.
Perhaps like this:
VBA Code:
    With ThisWorkbook.Worksheets("Gantt Inputs")
        .Rows(10).Insert
        .Cells(10, 2) = "=BCI!$C$55"
        .Cells(10, 3) = "=BCI!$C6"
        .Cells(10, 5) = "=BCI!$C16"
        .Cells(10, 6) = "=BCI!$C66"
    End With
 
Upvote 0

Forum statistics

Threads
1,212,927
Messages
6,110,718
Members
448,294
Latest member
jmjmjmjmjmjm

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