Just tried your latest VBA code , its now working with the DDE update , the only problem now is B1 is showing zero (basically not summing up A1 ) but C1 is counting fine .
That's because I'm a complete doofus..., should be:
Private Sub Worksheet_Calculate()
Range("B1").Value = Val(Range("B1").Value) + Val(Range("A1").Value)
Range("C1").Value = Range("C1").Value + 1
End Sub
Re: learning VBA - self taught I'm afraid... by self I mean: Macro Recorder, Forums like this one... there are a good few books about - Walkenbach always get good reviews, PED for the more advanced programmer...
Bookmarks