vba sheet code

ottasight

New Member
Joined
Feb 15, 2009
Messages
47
hi
i pasted these into a new workbook's worksheet code, and can't get them to work. thanks for the help
Private Sub WORKSHEET_CALCULATE()
dim b as integer
b=0
do
Range("D3").FormulaR1C1 = b
b = b+1
loop while b < 3
End Sub



Private Sub WORKSHEET_CALCULATE()
Range("D3").FormulaR1C1 = "monday"
End Sub
neither works when sheet is auto calculated, but does print monday from the immediate window
 

Excel Facts

Wildcard in VLOOKUP
Use =VLOOKUP("Apple*" to find apple, Apple, or applesauce
It's actually Do While...Loop:

<font face=Calibri><SPAN style="color:#00007F">Private</SPAN> <SPAN style="color:#00007F">Sub</SPAN> Worksheet_Calculate()<br>    <SPAN style="color:#00007F">Dim</SPAN> b <SPAN style="color:#00007F">As</SPAN> <SPAN style="color:#00007F">Integer</SPAN><br>        b = 0<br>            <br>            <SPAN style="color:#00007F">Do</SPAN> <SPAN style="color:#00007F">While</SPAN> b < 3<br>                Range("D3").FormulaR1C1 = b<br>                b = b + 1<br>            <SPAN style="color:#00007F">Loop</SPAN><br>            <br><SPAN style="color:#00007F">End</SPAN> <SPAN style="color:#00007F">Sub</SPAN><br></FONT>

And you can't have two like event procedures in the same module or they'll conflict, but you can combine them.

I'm curious as to why you want the loop since it will always result in 2 though?
 
Upvote 0

Forum statistics

Threads
1,224,530
Messages
6,179,373
Members
452,907
Latest member
Roland Deschain

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