I have written code to clear data in Cell D37 on all sheets Listed in the Array
However when running the macro, the data in D37 is not being cleared
It would be appreciated if someone would kindly amend my code
However when running the macro, the data in D37 is not being cleared
It would be appreciated if someone would kindly amend my code
Code:
Sub Clear_Ref_Advices()
Dim arr, Wks
arr = Array(" advice BR1 GRT", " advice BR1 GRT", " advice BR3 GRT", " advice BR4 GRT" _
, " advice BR5 GRT", " advice BR6 GRT")
For Each Wks In arr
Range("D37").ClearContents
Next Wks
End Sub