I'm trying to delete the values between the following two Excel ranges:
ActiveSheet.Range("A10").Offset(1, 1)
ActiveSheet.Cells.Find("Sub Total").Offset(-1, 0)
Do I need to store the above two values in some variable or perhaps there is a better way doing this as the following won't compile:
ActiveSheet.Range("ActiveSheet.Range("A10").Offset(1, 1):ActiveSheet.Cells.Find("Sub Total").Offset(-1, 0)").SelectSelection.ClearContents