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
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