Compile error - Procedure too large. Code assistance needed.

ChristopherB111

New Member
Joined
May 12, 2018
Messages
2
Assistance needed to break this Code down to a smaller version as I am getting a Compile Error - Procedure too large.

Current Code:

Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Address = "$BA$4" Then
Shapes("A 1").Width = Target.Value * Range("BA157")
End If
If Target.Address = "$BB$4" Then
Shapes("A 1").Height = Target.Value * Range("BA159")
End If
If Target.Address = "$BA$5" Then
Shapes("A 2").Width = Target.Value * Range("BA157")
End If
If Target.Address = "$BB$5" Then Shapes("A 2").Height = Target.Value * Range("BA159")
End If
If Targ.........


Its for 150 Shapes (staring from "A 1"):

Column Range from BA4 to BA153 * Cell BA157 will give Width value for each Shape

And

Column Range from BB4 to BB153 * Cell BA159 will give Height value for each Shape.

Thanks,

Chris.
 

Excel Facts

Spell Check in Excel
Press F7 to start spell check in Excel. Be careful, by default, Excel does not check Capitalized Werds (whoops)
Cross posted https://www.excelforum.com/excel-pr...ice-need-help-to-break-down-code-smaller.html

Cross-Posting
While we do not prohibit Cross-Posting on this site, we do ask that you please mention you are doing so and provide links in each of the threads pointing to the other thread (see rule 13 here along with the explanation: Forum Rules).
This way, other members can see what has already been done in regards to a question, and do not waste time working on a question that may already be answered.
 
Upvote 0
Apologies. I thought the cross post meant in same website forum. Just trying to get this Code resolved so decided to look for extra assistance.
 
Upvote 0

Forum statistics

Threads
1,214,908
Messages
6,122,187
Members
449,071
Latest member
cdnMech

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