Recalculation Failure

X

Xiaozhong

Option Explicit

Function recal()
Debug.Print "recalculating"
recal = "done"
End Function

Sub dosth()
Range("a1").Calculate
End Sub

I input in the a1 cell with "=recal()" and run sub dosht() for
serveral times. In immediate window, I didn't see "recalculating"
printed.

Why? Range("a1").Calculate won't force the reevaluation of a1 cell?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top