What is the difference between .Value = “” and .ClearContents?
问题 If I run the following code Sub Test_1() Cells(1, 1).ClearContents Cells(2, 1).Value = "" End Sub When I check Cells(1, 1) and Cells(2, 1) using formula ISBLANK() both results return TRUE . So I'm wondering: What is the difference between Cells( , ).Value = "" and Cells( , ).ClearContents ? Are they essentially the same? If I then run the following code to test the time difference between the methods: Sub Test_2() Dim i As Long, j As Long Application.ScreenUpdating = False For j = 1 To 10 T0