Running macro individually instead of entire sheet

Elysium4Eternity

New Member
Joined
May 7, 2018
Messages
12
Code:
Sub Financiël_Gevel_€_M²_JAAR()


Dim i As Long
Dim j As Long
Dim k As Long
Dim l As Long


For i = 3 To 4001 Step 4
    
If Range("F" & i).Value = "Elektriciteit" Then
For j = 3 To 4001 Step 4
Range("L" & i).FormulaR1C1 = "=r[-1]c*r5c34"
Next j


ElseIf Range("F" & i).Value = "Aardgas" Then


For k = 3 To 4001 Step 4
Range("L" & i).FormulaR1C1 = "=r[-1]c*r7c34"
        
Else
        
For l = 3 To 4001 Step 4
Range("L" & i).FormulaR1C1 = "=r[-1]c*r9c34"
Next l
    
End If


Next i


End Sub

In my sheet F3 is a cell in wich you can choose one of the following options: Elektriciteit, Aaardgas and Stookolie. But I want my code to run automatically when I switch between one of those options. I know how to do this but the problem is that the method I know of will run the macro for the entire sheet. And since I have 4000 lines it will take a long time for excel to process this. Is there a way to run the macro individually for a few rows instead of the entire sheet?
 

Excel Facts

What is the fastest way to copy a formula?
If A2:A50000 contain data. Enter a formula in B2. Select B2. Double-click the Fill Handle and Excel will shoot the formula down to B50000.
I don't really understand the purpose of the j, k and l loops since you are only writing the same formula to the same cell repeatedly. I'm not even sure you really need code as you could use an IF formula in the cells directly.

In any event, you could use a Change event in the Worksheet, something like this:

Code:
private sub worksheet_change(byval target as range)
dim cell as range, lRow as long
if not intersect(Target, Range("F:F")) is nothing then
   on error goto clean_up
   application.enableevents = false
   for each cell in intersect(Target, Range("F:F")).Cells
      select case cell.value
         case "Elektriciteit"
            lrow = 5
        Case "Aardgas"
           lRow = 7
        case else
           lRow = 9
      end select
      cells(cell.Row, "L").FormulaR1C1 = "=r[-1]c*r" & lRow & "c34"
   next cell
  
end if

clean_up:
   application.enableevents = true
end sub

Note: that code must be in the worksheet code module - right-click the sheet tab and choose 'View Code' from the menu, then paste it in.
 
Last edited:
Upvote 0

Forum statistics

Threads
1,216,051
Messages
6,128,505
Members
449,455
Latest member
jesski

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