Hi,
I have the simple bit of code below, that add or removes a percentage of cells value. I need to apply this to quite a large number of cells that wont be a contiguous range, is there an easy way of doing this with writing the same line many times?
I have the simple bit of code below, that add or removes a percentage of cells value. I need to apply this to quite a large number of cells that wont be a contiguous range, is there an easy way of doing this with writing the same line many times?
Code:
Sub SalesSeasons()
Worksheets("SalesForecast").Range("H17") = Range ("H17").Value*Range("X6").Value
End Sub